/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Creazioni Brand Colors */
    --primary-color: #83865C;        /* Dark Green from original site */
    --secondary-color: #B7BD9A;      /* Muted green - nature inspired */
    --tertiary-color: #e7e9d6;
    --accent-color: #9d7c5a;         /* Bronze/brown accent */
    --blue: #6680A5;
    --background-light: #f5f3f0;     /* Light beige background */
    --background-cream: #ebe8e3;     /* Cream tone */
    --text-dark: #2c2c2c;            /* Dark text */
    --text-light: #666666;           /* Light text */
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 60px 0;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5em;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover{
color: #959A77;


}

 ol {
    /* Apenas para garantir que não há marcadores padrão */
      padding-left: 25px;
  }
  ol li::marker {
    color: var(--blue); /* Substitua por sua cor desejada (ex: #FF5733, rgb(255, 87, 51)) */
    font-weight: bold;
    font-size: 1em;
  }



/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: var(--blue);
    margin: 0 auto 30px;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 65px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 83vh;
    min-height: 420px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(135deg, #ebe8e3 0%, #d4cfc7 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ebe8e3;stop-opacity:1" /><stop offset="100%" style="stop-color:%23d4cfc7;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 98, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-bottom: 90px;
}

.hero-title {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 500 !important;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 
    2px 3px 2px #0000008d,
    1px 1px 10px #0000008d,
    0px 0px 20px #000000c3,
    0px 0px 35px #000000a0;
}

.hero-subtitle {
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
     text-shadow: 1px 1px 2px #000000dc,
     1px 1px 8px #0000008d,
     0px 0px 15px #000000e6,
      0px 0px 35px #000000a0; 
}

/* Hero Carousel Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-indicators .indicator.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    
    border-color: var(--secondary-color);
    color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(130, 176, 109, 0.3);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 20px 0 60px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.about-text {
    padding-right: 20px;
}

.about-paragraph {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-paragraph strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    position: relative;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 100px;
}

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}

.image-placeholder {
    background: var(--background-light);
    border: 2px dashed var(--secondary-color);
    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    color: var(--text-light);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: var(--background-cream);
    border-color: var(--accent-color);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
    padding: var(--section-padding);
    background: var(--background-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    background: var(--background-cream);
    aspect-ratio: 1;
    width: 100%;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.portfolio-image .image-placeholder {
    min-height: 0;
    height: 100%;
    border: none;
    border-radius: 0;
    padding: 0px;
}

.portfolio-image .image-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.portfolio-image .image-placeholder p {
    font-size: 0.85rem;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.portfolio-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Instagram CTA
   =================================== */
.instagram-cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.instagram-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: var(--primary-color);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.instagram-cta-link:hover {
    border-color: var(--secondary-color);
    color: var(--tertiary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(130, 176, 109, 0.3);
}

.instagram-cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instagram-cta-icon svg {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.instagram-cta-text {
    font-family: var(--font-body);
}

.instagram-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.instagram-cta-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.instagram-cta-link:hover .instagram-cta-arrow {
    transform: translateX(5px);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--tertiary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-column {
    display: flex;
    flex-direction: column;
}

.contact-column-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-icon.whatsapp-icon {
    background: #25D366;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-social-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    margin-top: -15px;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-link-card.instagram {
    border-color: transparent;
}

.social-link-card.instagram:hover {
    border-color: #E1306C;
    background: rgba(225, 48, 108, 0.05);
}

.social-link-card.facebook {
    border-color: transparent;
}

.social-link-card.facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.05);
}

.social-link-card.pinterest {
    border-color: transparent;
}

.social-link-card.pinterest:hover {
    border-color: #E60023;
    background: rgba(230, 0, 35, 0.05);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-card.facebook .social-icon {
    background: #1877F2;
}

.social-link-card.pinterest .social-icon {
    background: #E60023;
}

.social-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.social-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.social-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 5px 0;
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tertiary-color);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoomIn 0.3s ease;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.lightbox-caption {
    color: var(--text-dark);
    text-align: left;
    font-size: 1.1rem;
    flex: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.lightbox-counter {
    color: var(--white);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 25px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }

    .about-image {
         margin-top: 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;        
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-indicators {
        bottom: 30px;
        gap: 12px;
    }
    
    .hero-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .instagram-cta {
        margin-top: 40px;
    }
    
    .instagram-cta-link {
        padding: 12px 30px;
        font-size: 0.9rem;
        gap: 12px;
    }
    
    .instagram-cta-icon {
        width: 20px;
        height: 20px;
    }
    
    .instagram-cta-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .instagram-cta-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    .lightbox-counter {
        top: 15px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .hero-indicators .indicator {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-cta {
        margin-top: 30px;
    }
    
    .instagram-cta-link {
        padding: 12px 25px;
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .instagram-cta-icon {
        width: 18px;
        height: 18px;
    }
    
    .instagram-cta-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .instagram-cta-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .lightbox-caption {
        font-size: 0.95rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
}