/* Variáveis CSS para design elegante e sofisticado */
:root {
    /* Cores principais - paleta elegante e neutra */
    --primary: #3A4F52;
    --primary-dark: #2A3B3E;
    --secondary: #1A1A1A;
    --secondary-light: #333333;
    --accent: #C0C9CC;
    --accent-dark: #A0A9AC;
    
    /* Cores neutras */
    --black: #000000;
    --dark: #0f0f0f;
    --gray-dark: #2d3436;
    --gray: #636e72;
    --gray-light: #b2bec3;
    --light: #f5f7f8;
    --white: #ffffff;
    
    /* Cores de texto */
    --text-dark: #2d3436;
    --text-light: #b2bec3;
    --text-white: #ffffff;
    
    /* Efeitos */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent-dark));
    --gradient-dark: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-light: linear-gradient(135deg, var(--white), var(--light));
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Reset e estilos base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

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

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* Cursor personalizado */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    z-index: 100;
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo-link span {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 4rem;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-cta {
    margin-left: 4rem;
}

.contact-btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: var(--transition-normal);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2rem;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 15rem 0 5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.frame-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: #fff;
    z-index: 10;
}

.frame-category {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
}

.frame-title {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

.frame-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg);
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
}

@media (min-width: 992px) {
    .image-frame {
        height: 30rem;
        width: 80%;
        float: right;
        margin-right: 2rem;
    }
    
    .value-header-image {
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 2rem;
    }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 247, 248, 0.95); /* Cor clara neutra com alta opacidade */
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 2;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

/* Conteúdo da Hero Section */
.hero-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.subtitle-line {
    width: 6rem;
    height: 2px;
    background-color: var(--primary);
}

.hero-subtitle span {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.05);
}

@media (max-width: 1400px) {
    .hero-title {
        font-size: 7rem;
    }
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 4rem;
    max-width: 90%;
    font-weight: 500;
    padding-left: 2rem;
    border-left: 3px solid var(--primary);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 3.2rem;
    background: var(--primary);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary i {
    font-size: 1.4rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #25D366;
    color: var(--white);
    padding: 1.2rem 2.4rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.whatsapp-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.whatsapp-icon i {
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.btn-whatsapp span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: #20ba59;
}

.btn-whatsapp:hover .whatsapp-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

/* Galeria Hero */
.hero-gallery {
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 45rem;
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    color: var(--white);
    transition: var(--transition-normal);
}

.caption-category {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    display: inline-block;
    margin-bottom: 0.8rem;
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.caption-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-top: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--text-dark);
}

/* Indicador de rolagem e links sociais */
/* Scroll indicator removido conforme solicitado */

.social-links {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-link {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.social-link i {
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary);
}

.social-link:hover i {
    color: var(--white);
}

/* Estilos Gerais para Seções */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 6rem;
}

.section-header.center {
    text-align: center;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-header.center .subtitle {
    justify-content: center;
}

.subtitle-line {
    width: 6rem;
    height: 2px;
    background-color: var(--primary);
}

.subtitle span {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 1400px) {
    .subtitle span {
        font-size: 2.2rem;
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 80%;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 50rem;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 12rem;
    height: 12rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(209, 77, 114, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(209, 77, 114, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(209, 77, 114, 0);
    }
}

.badge-number {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead-text {
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--secondary);
    font-weight: 500;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.signature {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signature-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.signature-title {
    font-size: 1.4rem;
    color: var(--gray);
}

/* Services Section */
.services-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5rem;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: var(--transition-normal);
}

.service-icon i {
    font-size: 2.8rem;
    color: var(--primary-dark);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.service-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    transition: var(--transition-normal);
}

.service-link i {
    font-size: 1.4rem;
    transition: var(--transition-normal);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--white);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.filter-btn {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    background-color: transparent;
    transition: var(--transition-normal);
    cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--white);
    background-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    height: auto;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
    display: block !important;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.caption-category {
    display: inline-block !important;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
}

.caption-title {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
    display: block !important;
}






.overlay-content {
    width: 100%;
}

.overlay-category {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.overlay-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.overlay-link {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.overlay-link:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: rotate(90deg);
}

.portfolio-cta {
    text-align: center;
    margin-top: 5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -10rem;
    right: -10rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.1;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -10rem;
    left: -10rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.1;
    z-index: 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        display: flex !important;
    }
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.6rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.author-role {
    font-size: 1.4rem;
    color: var(--gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active, .dot:hover {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

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

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.contact-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

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

.contact-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon:hover i {
    color: var(--white);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    border: 1px dashed var(--accent);
    border-radius: var(--radius-md);
    z-index: -1;
    pointer-events: none;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.5rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(209, 77, 114, 0.2);
}

.contact-form .btn-primary {
    grid-column: span 2;
    margin-top: 2rem;
    justify-content: center;
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 8rem 0 5rem;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--gray-dark) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-link {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: var(--transition-normal);
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.newsletter-form {
    display: flex;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.5rem;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 1.5rem;
    color: var(--text-dark);
    background-color: var(--white);
}

.newsletter-form button {
    padding: 0 2rem;
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.copyright {
    font-size: 1.4rem;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 3rem;
}

.footer-bottom-link {
    font-size: 1.4rem;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
        border-left: none;
        border-bottom: 3px solid var(--primary);
        padding-left: 0;
        padding-bottom: 2rem;
        text-align: center;
    }
    
    .hero-subtitle, .subtitle {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        display: flex !important;
        margin-top: 3rem;
    }
    
    .testimonial-dots {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .btn-whatsapp span {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        transform: rotate(-45deg);
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        flex-wrap: wrap;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .social-links {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 3.6rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form .btn-primary {
        grid-column: 1;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Value Proposition Section */
.value-proposition-section {
    position: relative;
    padding: 12rem 0;
    background-color: var(--white);
    overflow: hidden;
}

/* Background Elements */
.value-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.value-bg-circle {
    position: absolute;
    top: -15rem;
    right: -15rem;
    width: 45rem;
    height: 45rem;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.1;
}

.value-bg-line {
    position: absolute;
    bottom: 10rem;
    left: -10rem;
    width: 30rem;
    height: 1px;
    background-color: var(--primary);
    transform: rotate(-45deg);
    opacity: 0.2;
}

.value-bg-dots {
    position: absolute;
    bottom: 5rem;
    right: 10rem;
    width: 20rem;
    height: 20rem;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.2;
}

/* Header Section */
.value-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 10rem;
}

.value-header-content {
    padding-right: 3rem;
}

.value-header-content .section-title {
    margin-bottom: 3rem;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.8rem;
    background-color: rgba(192, 201, 204, 0.3);
    z-index: -1;
}

.value-intro {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 60rem;
    margin-bottom: 3rem;
}

.value-header-image {
    position: relative;
    height: 45rem;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-desktop.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -1;
}

@media (max-width: 768px) {
    .bg-image {
        background-image: url('../images/hero-mobile.png');
        background-position: center top;
        background-size: cover;
    }
}

@media (max-width: 576px) {
    .bg-image {
        background-image: url('../images/hero-mobile.png');
        background-position: center top;
        background-size: cover;
    }
}

.frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(58, 79, 82, 0.3), rgba(58, 79, 82, 0.1));
}

.frame-border {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: calc(var(--radius-lg) - 1rem);
}

/* Features Section */
.value-features {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.value-feature {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 3rem;
    position: relative;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    color: rgba(192, 201, 204, 0.5);
    line-height: 1;
}

.feature-content {
    padding-top: 1rem;
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 2.4rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.value-feature:hover .feature-icon {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.value-feature:hover .feature-icon i {
    color: var(--white);
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 60rem;
}

/* CTA Section */
.value-cta {
    margin-top: 8rem;
    text-align: center;
}

@media (max-width: 1200px) {
    .value-header {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .value-header-image {
        display: block;
        width: 100%;
        margin: 2rem 0;
    }
}

@media (min-width: 992px) {
    .value-header-image {
        flex: 1;
        padding-left: 5rem;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .value-feature {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-number {
        font-size: 5rem;
    }
    
    .value-header-image {
        height: 30rem;
    }
}

/* Product Detail Section */
.product-detail-section {
    position: relative;
    padding: 12rem 0;
    background-color: var(--light);
    overflow: hidden;
}

.product-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.detail-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    top: -10rem;
    right: -10rem;
    width: 30rem;
    height: 30rem;
    background: linear-gradient(135deg, rgba(58, 79, 82, 0.05), rgba(58, 79, 82, 0.1));
}

.shape-2 {
    bottom: -15rem;
    left: -15rem;
    width: 40rem;
    height: 40rem;
    border: 1px solid var(--accent);
    opacity: 0.1;
}

.product-detail-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 6rem;
}

.detail-header-content {
    max-width: 80rem;
    margin: 0 auto;
}

.detail-intro {
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-top: 2rem;
}

/* Tabs Navigation */
.detail-tabs {
    position: relative;
    z-index: 1;
}

.detail-tabs-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2rem;
}

.tab-nav-item {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    border-radius: var(--radius-sm);
}

.tab-nav-item::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.tab-nav-item.active {
    background-color: rgba(192, 201, 204, 0.1);
}

.tab-nav-item.active::after {
    width: 80%;
}

.tab-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.tab-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.tab-nav-item:hover .tab-icon,
.tab-nav-item.active .tab-icon {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.tab-nav-item:hover .tab-icon i,
.tab-nav-item.active .tab-icon i {
    color: var(--white);
}

.tab-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.tab-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition-normal);
}

.tab-nav-item:hover .tab-title,
.tab-nav-item.active .tab-title {
    color: var(--primary);
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.tab-image {
    position: relative;
    height: 30rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--gray-light);
    aspect-ratio: 16/9;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
}

.tab-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}



.tab-img {
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transition: transform 0.5s ease;
    display: block !important;
    margin: 0 auto !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: var(--radius-lg);
}



@media (max-width: 992px) {
    .tab-image {
        height: 25rem;
    }
    .image-container img {
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .tab-image {
        height: 25rem;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .tab-image-container {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .tab-img {
        max-width: 90% !important;
        max-height: 90% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        margin: 0 auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

.image-container:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(58, 79, 82, 0.7), rgba(58, 79, 82, 0.4));
}

.tab-info {
    padding: 2rem 0;
}

.tab-content-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.tab-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8rem;
    height: 3px;
    background-color: var(--primary);
}

.tab-list {
    list-style: none;
}

.tab-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.list-marker {
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.2;
}

.list-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: var(--primary);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    padding-left: 2rem;
    border-left: 2px dashed rgba(58, 79, 82, 0.2);
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .portfolio-caption {
        padding: 1rem;
        opacity: 1 !important;
        visibility: visible !important;
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
        display: block !important;
    }
    
    .caption-category {
        font-size: 1rem;
        color: #fff;
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .caption-title {
        font-size: 1.5rem;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .frame-border {
        display: none;
    }
    
    .frame-overlay {
        position: relative;
        height: 30rem;
        overflow: hidden;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        margin: 0 auto;
    }
    
    .frame-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .detail-tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-nav-item {
        flex: 0 0 50%;
    }
    
    .tab-content-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .tab-image {
        order: 2;
        height: 35rem;
    }
    
    .tab-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .detail-tabs-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tab-nav-item {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1.5rem;
        border: 1px solid rgba(192, 201, 204, 0.3);
        border-radius: var(--radius-md);
        position: relative;
    }
    
    .tab-nav-item::after {
        bottom: auto;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        transform: none;
    }
    
    .tab-nav-item.active::after {
        width: 4px;
        height: 100%;
    }
    
    .tab-icon {
        margin: 0 2rem 0 0;
    }
    
    .tab-nav-item::before {
        content: '\f054';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 1.4rem;
        opacity: 0.5;
        transition: var(--transition-normal);
    }
    
    .tab-nav-item:hover::before,
    .tab-nav-item.active::before {
        opacity: 1;
        transform: translate(5px, -50%);
    }
    
    .tab-nav-content {
        display: flex;
        flex-direction: column;
    }
    
    .tab-image {
        height: 30rem;
    }
}

@media (max-width: 576px) {
    .product-detail-section {
        padding: 8rem 0;
    }
    
    .tab-nav-item {
        padding: 1.2rem;
    }
    
    .tab-icon {
        width: 4rem;
        height: 4rem;
        margin-right: 1.5rem;
    }
    
    .tab-icon i {
        font-size: 1.6rem;
    }
    
    .tab-title {
        font-size: 1.4rem;
    }
    
    .tab-number {
        font-size: 1.2rem;
    }
}

/* Tab functionality is handled by JavaScript */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 6rem;
    height: 6rem;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 3rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 5rem;
        height: 5rem;
        bottom: 2rem;
        right: 2rem;
    }
    
    .whatsapp-float i {
        font-size: 2.5rem;
    }
}

/* Animation Styles */
.hero-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-section.loaded {
    opacity: 1;
    transform: translateY(0);
}

.about-content,
.services-grid,
.portfolio-grid,
.testimonials-slider,
.contact-wrapper {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.social-link i {
    color: var(--secondary);
    font-size: 1.6rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: var(--primary);
}

.social-link:hover i {
    color: var(--white);
}

/* Responsividade */
@media (max-width: 1200px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .gallery-item {
        height: 50rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .subtitle-line {
        display: none;
    }
    
    .gallery-item {
        height: 45rem;
    }
    
    .social-links {
        right: 3rem;
        bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 12rem 0 5rem;
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .social-links {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.6rem;
    }
    
    .hero-description {
        font-size: 1.6rem;
    }
    
    .gallery-item {
        height: 35rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.hero-actions {
    animation-delay: 0.8s;
}

.hero-gallery {
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--cream);
    letter-spacing: 0.2px;
    font-weight: 400;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M25,25 C25,15 35,15 35,25 C35,35 45,35 45,25 C45,15 55,15 55,25 C55,35 65,35 65,25 C65,15 75,15 75,25" stroke="rgba(142, 68, 173, 0.03)" fill="none" stroke-width="2" /></svg>');
    background-size: 400px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--primary);
}

/* Adiciona elementos decorativos aos títulos */
.decorative-title {
    position: relative;
    display: inline-block;
}

.decorative-title::before,
.decorative-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--primary-light);
    top: 50%;
    opacity: 0.6;
}

.decorative-title::before {
    left: -40px;
}

.decorative-title::after {
    right: -40px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.15rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 90%;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(142, 68, 173, 0.2);
}

h2 em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header e navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(142, 68, 173, 0.1);
}

header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="10" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 C25,10 75,10 100,0" fill="rgba(255, 255, 255, 0.95)" /></svg>');
    background-size: 100px 10px;
    background-repeat: repeat-x;
}

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

.logo h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.logo h3::before {
    content: '\f030'; /* Código do ícone de câmera do Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--secondary);
    margin-right: 10px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0 1rem;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.menu a:hover {
    color: var(--secondary);
}

.menu a:hover::after {
    width: 80%;
}

.menu li:last-child a {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.2);
}

.menu li:last-child a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.menu li:last-child a::after {
    display: none;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Seção Hero */
.hero {
    padding: 10rem 0 6rem;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50,30 C55,30 55,20 50,20 C45,20 45,30 50,30 Z M50,30 C55,30 55,40 50,40 C45,40 45,30 50,30 Z M30,50 C30,45 20,45 20,50 C20,55 30,55 30,50 Z M30,50 C30,45 40,45 40,50 C40,55 30,55 30,50 Z M70,50 C70,45 60,45 60,50 C60,55 70,55 70,50 Z M70,50 C70,45 80,45 80,50 C80,55 70,55 70,50 Z M50,70 C55,70 55,60 50,60 C45,60 45,70 50,70 Z M50,70 C55,70 55,80 50,80 C45,80 45,70 50,70 Z" fill="rgba(231, 76, 60, 0.03)" /></svg>');
    background-size: 200px;
    opacity: 0.5;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="15" xmlns="http://www.w3.org/2000/svg"><path d="M0,10 C30,30 70,0 100,10 L100,15 L0,15 Z" fill="white" /></svg>');
    background-size: 100px 15px;
    background-repeat: repeat-x;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* Elementos decorativos de casamento */
.hero .container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg width="150" height="150" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="rgba(142, 68, 173, 0.1)" stroke-width="1"><circle cx="75" cy="75" r="60" /><circle cx="75" cy="75" r="40" /><circle cx="75" cy="75" r="20" /></g></svg>');
    top: -50px;
    left: -100px;
    z-index: -1;
    opacity: 0.8;
}

.hero .container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 L60,40 L100,50 L60,60 L50,100 L40,60 L0,50 L40,40 Z" fill="rgba(231, 76, 60, 0.05)" /></svg>');
    bottom: -50px;
    right: 0;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 520px;
    padding-right: 1rem;
}

.hero-content h1 {
    color: var(--primary);
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    max-width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-content h1 span {
    display: block;
    color: var(--secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 40px;
}

.hero-content h1 span::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: var(--secondary);
    left: 0;
    top: 50%;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30,0 C40,15 60,25 30,60 C0,25 20,15 30,0" fill="rgba(231, 76, 60, 0.1)" /></svg>');
    right: -20px;
    top: -30px;
    z-index: -1;
}

.cta-button {
    margin: 3rem 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M20,0 L24,16 L40,20 L24,24 L20,40 L16,24 L0,20 L16,16 Z" fill="rgba(231, 76, 60, 0.1)" /></svg>');
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.primary-btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
    border: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: transform 0.5s ease;
}

.primary-btn:hover::after {
    transform: rotate(30deg) translate(10%, 10%);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.95rem 1.8rem;
}

.secondary-btn:hover {
    background-color: rgba(142, 68, 173, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.1);
}

.cta-button::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-light), transparent);
    opacity: 0.5;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.credentials::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg width="120" height="6" xmlns="http://www.w3.org/2000/svg"><path d="M0,3 C10,0 20,6 30,3 C40,0 50,6 60,3 C70,0 80,6 90,3 C100,0 110,6 120,3" stroke="rgba(142, 68, 173, 0.2)" fill="none" /></svg>');
    background-repeat: repeat-x;
    background-size: 120px 6px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.credential-item i {
    color: var(--white);
    font-size: 0.8rem;
    background: var(--gradient-primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(142, 68, 173, 0.2);
}

.credential-item p {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.featured-image {
    width: 100%;
    height: 580px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px var(--shadow-strong);
    border-radius: var(--curve-border) 0 var(--curve-border) 0;
    transform: rotate(2deg);
}

.featured-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(142, 68, 173, 0.05), rgba(142, 68, 173, 0.15));
    z-index: 1;
}

.featured-image::after {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
    left: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: calc(var(--curve-border) - 15px) 0 calc(var(--curve-border) - 15px) 0;
    z-index: 2;
    pointer-events: none;
}

/* Elementos decorativos adicionais */
.hero-image::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><path d="M40,0 C50,20 80,30 40,80 C0,30 30,20 40,0 Z" fill="rgba(231, 76, 60, 0.1)" /></svg>');
    top: -40px;
    right: 40px;
    z-index: 3;
    transform: rotate(-20deg);
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(142, 68, 173, 0.1)" stroke-width="2" stroke-dasharray="5,5" fill="none" /></svg>');
    bottom: -50px;
    left: -30px;
    z-index: -1;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    display: block;
    transform: rotate(-2deg) scale(1.05);
}

.featured-image:hover img {
    transform: rotate(-2deg) scale(1.12);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero::before {
        width: 100%;
        height: 40%;
        opacity: 0.3;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero .container::before,
    .hero .container::after {
        opacity: 0.5;
        transform: scale(0.8);
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-content h1 {
        margin: 0 auto 2.5rem;
        font-size: 3.2rem;
    }
    
    .hero-content h1::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    
    .hero-content h1 span {
        padding-left: 0;
        display: inline-block;
    }
    
    .hero-content h1 span::before {
        display: none;
    }
    
    .hero-content h2 {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    
    .cta-button {
        justify-content: center;
    }
    
    .cta-button::before {
        display: none;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .credentials::before {
        background-position: center;
    }
    
    .featured-image {
        height: 450px;
        margin-top: 4rem;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        transform: rotate(0);
    }
    
    .featured-image img {
        transform: rotate(0) scale(1.05);
    }
    
    .featured-image:hover img {
        transform: rotate(0) scale(1.12);
    }
    
    .hero-image::before,
    .hero-image::after {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .menu {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .credentials {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .credential-item {
        width: 100%;
        max-width: 300px;
    }
    
    .featured-image {
        height: 380px;
        border-radius: 20px 0 20px 0;
    }
    
    .featured-image::after {
        border-radius: 10px 0 10px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 span {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-button {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        margin-top: 2rem;
    }
    
    .cta-button::after {
        display: none;
    }
    
    .featured-image {
        height: 300px;
        width: 100%;
        border-radius: 15px 0 15px 0;
    }
    
    .featured-image::after {
        border-radius: 8px 0 8px 0;
    }
    
    .btn {
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .hero::after {
        height: 10px;
        background-size: 80px 10px;
    }
}
