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

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fff;
}

:root {
    --primary-pink: #FF69B4;
    --secondary-pink: #FF1493;
    --light-pink: #FFB6C1;
    --dark-pink: #C71585;
    --accent-pink: #FF10F0;
    --gradient-1: linear-gradient(135deg, #FF69B4, #FF1493, #C71585);
    --gradient-2: linear-gradient(45deg, #FFB6C1, #FF69B4, #FF10F0);
    --gradient-3: linear-gradient(225deg, #C71585, #FF1493, #FFB6C1);
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
    --shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    --shadow-hover: 0 20px 40px rgba(255, 105, 180, 0.4);
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .image-placeholder,
    .hero-photo {
        max-width: 100%;
        width: 100%;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.8)); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* Animação do hambúrguer para X */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--accent-pink);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--accent-pink);
}

/* Efeito de brilho no hover */
.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF69B4, #FF1493, #C71585, #FF10F0, #FFB6C1, #FF69B4);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    animation: float 6s ease-in-out infinite;
    z-index: -2;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FF10F0, #FF69B4);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.image-placeholder {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 105, 180, 0.3));
    border: 3px dashed rgba(255, 105, 180, 0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.8);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.8;
}

.hero-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 
        0 30px 60px rgba(255, 105, 180, 0.5),
        0 20px 40px rgba(255, 182, 193, 0.4),
        0 10px 20px rgba(255, 20, 147, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(255, 105, 180, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 6px solid transparent;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 105, 180, 0.1)) padding-box,
        linear-gradient(45deg, #FF69B4, #FFB6C1, #FF1493, #FF69B4, #FFB6C1, #FF1493) border-box;
    position: relative;
    overflow: hidden;
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    z-index: 5;
}

.hero-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            transparent 30%, 
            transparent 70%, 
            rgba(255, 105, 180, 0.15) 100%);
    border-radius: 40px;
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 1;
}

.hero-photo::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF69B4, #FFB6C1, #FF1493, #FF69B4, #FFB6C1);
    background-size: 300% 300%;
    border-radius: 32px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-photo:hover {
    transform: translateY(-20px) scale(1.05) rotate(3deg);
    box-shadow: 
        0 40px 80px rgba(255, 105, 180, 0.6),
        0 30px 60px rgba(255, 182, 193, 0.5),
        0 20px 40px rgba(255, 20, 147, 0.4),
        0 10px 20px rgba(255, 105, 180, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(255, 105, 180, 0.3);
    filter: brightness(1.1) contrast(1.15) saturate(1.3);
}

.hero-photo:hover::before {
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.25) 0%, 
            transparent 30%, 
            transparent 70%, 
            rgba(255, 105, 180, 0.25) 100%);
}

.hero-photo:hover::after {
    opacity: 1;
}

/* Sparkles estáticos removidos - apenas elementos em movimento */

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.9;
        filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.6));
    }
    25% {
        transform: translateY(-10px) rotate(90deg) scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.8));
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(1.3);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 1));
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.8));
    }
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1), rgba(199, 21, 133, 0.1), rgba(255, 16, 240, 0.1));
    border-radius: 50px;
    filter: blur(20px);
    animation: contentGlow 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes contentGlow {
    0% { 
        background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1), rgba(199, 21, 133, 0.1));
        transform: scale(1);
    }
    100% { 
        background: linear-gradient(45deg, rgba(255, 16, 240, 0.15), rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.15));
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 10;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #FFFFFF, #00BFFF, #FF69B4, #32CD32, #FFD700, #FF1493, #87CEEB, #FFB6C1, #00FFFF, #FF69B4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    animation: slideInUp 1s ease-out, rainbowShift 6s ease-in-out infinite, textPulse 4s ease-in-out infinite alternate;
    font-size: 1em;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
}

.title-line.colorful {
    background: linear-gradient(45deg, #FFFFFF, #00BFFF, #FF69B4, #32CD32, #FFD700, #FF1493, #87CEEB, #FFB6C1, #00FFFF, #FF69B4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out 0.3s both, rainbowShift 6s ease-in-out infinite, textPulse 4s ease-in-out infinite alternate;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    font-size: 1.1em;
}

.title-line:nth-child(1) {
    font-size: 1em;
    font-weight: 600;
    opacity: 0.9;
    animation: slideInUp 1s ease-out, rainbowShift 6s ease-in-out infinite, textPulse 4s ease-in-out infinite alternate;
}

.title-line:nth-child(2) {
    font-size: 1em;
    font-weight: 800;
    animation: slideInUp 1s ease-out 0.3s both, rainbowShift 6s ease-in-out infinite, textPulse 4s ease-in-out infinite alternate;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes textPulse {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    }
    100% { 
        transform: scale(1.01);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 6rem;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: slideInUp 1s ease-out 0.6s both;
    position: relative;
    z-index: 10;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    animation: slideInUp 1s ease-out 0.9s both;
}

/* Stats in about section */
.about .hero-stats {
    justify-content: center;
    margin: 2.5rem 0 3rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: var(--text-light);
    position: relative;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Stats in about section styling */
.about .stat-item {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 160px;
    padding: 1.8rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.25);
    border-color: rgba(255, 105, 180, 0.5);
}

.about .stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-top: 0.5rem;
    display: block;
    letter-spacing: 1px;
    color: #666;
}

.stat-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.about .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 0.1rem;
}

.about .stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

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

.stat-number {
    display: inline;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-right: 0.1rem;
    line-height: 1;
    vertical-align: baseline;
}

.stat-suffix {
    display: inline;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-pink);
    margin-right: 0.3rem;
    vertical-align: baseline;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.stat-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--text-light);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pink-hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="12" font-size="5" fill="%23FFB6C1" opacity="0.3" text-anchor="middle">♥</text></pattern></defs><rect width="100" height="100" fill="url(%23pink-hearts)"/></svg>');
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}



.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

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

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 0;
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    position: relative;
}


.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.brand-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.25);
}

.brand-logo {
    width: 150px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-pink);
    box-shadow: none;
    padding: 10px;
    overflow: hidden;
}

.brand-logo img {
    max-width: none;
    max-height: none;
    width: 200%;
    height: 200%;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin: 0 auto;
    transform-origin: center center;
    position: relative;
    top: 30%;
    transform: translate(-50%, -50%) scale(2);
}

.brand-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

/* Videos Section */
.videos {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    cursor: auto;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    animation: floatIcon 20s ease-in-out infinite;
}

.floating-icon.camera {
    font-size: 20px;
    color: #FF69B4;
}

.floating-icon.sparkle {
    font-size: 18px;
    color: #FFC0CB;
}


@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-30px) rotate(8deg);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
        opacity: 0.2;
    }
}


.videos .section-title {
    color: #FFE4E6;
    text-shadow: 
        0 0 8px rgba(255, 192, 203, 0.4),
        0 0 15px rgba(255, 182, 193, 0.3),
        0 0 25px rgba(255, 105, 180, 0.2);
    filter: drop-shadow(0 0 3px rgba(255, 192, 203, 0.3));
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #FFE4E6;
    background-clip: initial;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.video-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
    cursor: auto;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.video-content {
    margin-top: 2rem;
}

/* Estilos das abas - Solução simples */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Forçar exibição específica */
#general {
    display: none;
}

#advertising {
    display: none;
}

#general.active,
#advertising.active {
    display: block;
}

/* Garantir que o JavaScript funcione */
#general[style*="display: block"] {
    display: block !important;
}

#advertising[style*="display: block"] {
    display: block !important;
}

#general[style*="display: none"] {
    display: none !important;
}

#advertising[style*="display: none"] {
    display: none !important;
}

.video-tabs .tab-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    padding: 12px 24px;
    margin: 0 5px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    font-weight: 600;
}

.video-tabs .tab-btn:hover {
    background: rgba(255, 182, 193, 0.3);
    transform: translateY(-2px);
}

.video-tabs .tab-btn.active {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

/* Reels Grid */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap:0.3rem;
    max-width: 560px;
    margin: 0 auto;
    height: auto;
    position: relative;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.4) 0%, 
        rgba(255, 182, 193, 0.45) 25%, 
        rgba(255, 192, 203, 0.35) 50%, 
        rgba(255, 20, 147, 0.35) 75%, 
        rgba(255, 105, 180, 0.4) 100%);
    border-radius: 30px;
    border: 4px solid rgba(255, 105, 180, 0.6);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.1),
        0 32px 64px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(255, 105, 180, 0.4),
        0 16px 64px rgba(255, 20, 147, 0.3),
        0 0 50px rgba(255, 105, 180, 0.3),
        0 0 100px rgba(255, 20, 147, 0.2),
        inset 0 0 40px rgba(255, 182, 193, 0.3);
    backdrop-filter: blur(5px);
    animation: subtleGlow 4s ease-in-out infinite;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.reels-grid:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 64px 128px rgba(0, 0, 0, 0.2),
        0 16px 64px rgba(255, 105, 180, 0.7),
        0 32px 128px rgba(255, 20, 147, 0.6),
        0 0 100px rgba(255, 105, 180, 0.6),
        0 0 200px rgba(255, 20, 147, 0.4),
        inset 0 0 80px rgba(255, 182, 193, 0.6);
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(0, 0, 0, 0.1),
            0 16px 32px rgba(0, 0, 0, 0.1),
            0 32px 64px rgba(0, 0, 0, 0.1),
            0 8px 32px rgba(255, 105, 180, 0.4),
            0 16px 64px rgba(255, 20, 147, 0.3),
            0 0 50px rgba(255, 105, 180, 0.3),
            0 0 100px rgba(255, 20, 147, 0.2),
            inset 0 0 40px rgba(255, 182, 193, 0.3);
    }
    50% {
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.15),
            0 12px 24px rgba(0, 0, 0, 0.15),
            0 24px 48px rgba(0, 0, 0, 0.15),
            0 48px 96px rgba(0, 0, 0, 0.15),
            0 12px 48px rgba(255, 105, 180, 0.6),
            0 24px 96px rgba(255, 20, 147, 0.5),
            0 0 80px rgba(255, 105, 180, 0.5),
            0 0 150px rgba(255, 20, 147, 0.3),
            inset 0 0 60px rgba(255, 182, 193, 0.5);
    }
}

.reel-item {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    max-width: 180px;
    margin: 3px;
}

.reel-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
    cursor: pointer;
}

.reel-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reel-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reel-item:hover .reel-thumbnail video {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 105, 180, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.reel-item:hover .play-overlay {
    background: rgba(255, 20, 147, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.sponsored-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

/* Video Modal - Instagram Reels Style */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mobile Reels Style */
@media (max-width: 768px) {
    .video-modal {
        background-color: #000;
    }
    
    .video-modal-content {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
    }
    
    .video-container {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        position: fixed;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 10000;
    }
    
    #modalVideo {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        border-radius: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
    }
    
    /* Botão de fechar específico para mobile */
    .video-close {
        position: fixed !important;
        top: 15px !important;
        right: 15px !important;
        z-index: 10015 !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        background: linear-gradient(135deg, #FF69B4, #FFB6C1) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(10px) !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
        user-select: none !important;
    }
    
    .video-close:hover {
        background: linear-gradient(135deg, #FF1493, #FF69B4) !important;
        transform: scale(1.1) !important;
    }
}

/* Desktop Video Modal - Keep original behavior */
@media (min-width: 769px) {
    .video-modal {
        background-color: rgba(0, 0, 0, 0.95);
    }
    
    .video-modal-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        max-height: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #modalVideo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
        cursor: pointer;
    }
}
    
/* Video close button - works for both desktop and mobile */
.video-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10010;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

.video-close:hover {
    background: var(--pink-600);
    transform: scale(1.1);
}
    
/* Scroll instruction - mobile only */
@media (max-width: 768px) {
    .scroll-instruction {
        position: absolute;
        right: 10px;
        top: 15px;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 105, 180, 0.4);
        animation: pulse 2s infinite;
        white-space: nowrap;
        z-index: 10002;
        pointer-events: none;
        max-width: 150px;
    }
}

/* Desktop scroll instruction */
@media (min-width: 769px) {
    .scroll-instruction {
        position: absolute;
        right: 50px;
        top: 20px;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 10px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 105, 180, 0.4);
        animation: pulse 2s infinite;
        white-space: nowrap;
        max-width: 300px;
        z-index: 10003;
        pointer-events: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

/* Video progress indicator */
    .video-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, 0.3);
        z-index: 10002;
    }
    
    .video-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #FF69B4, #FF1493);
        width: 0%;
        transition: width 0.1s ease;
    }
    
    /* Video counter for mobile */
    .video-counter {
        position: fixed;
        top: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 10002;
    }
    
    /* Mobile video controls */
    #modalVideo {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        object-fit: cover;
        pointer-events: auto;
    }
    
    /* Swipe indicator */
    .swipe-indicator {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        z-index: 10001;
        animation: fadeInOut 3s ease-in-out;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0; }
        50% { opacity: 1; }
    }
    
    /* Video loading state */
    .video-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 18px;
        z-index: 10001;
    }
    
    /* Mobile video overlay for better UX */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 10001;
        pointer-events: auto;
        touch-action: pan-y;
    }
    
    /* Video container touch handling */
    .video-container {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
}

.video-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10005;
    transition: all 0.3s ease;
    background: rgba(255, 105, 180, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-close:hover {
    color: #FF69B4;
    background: rgba(255, 20, 147, 0.9);
}

#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
    cursor: pointer;
}


/* Swipe hint for mobile */
.swipe-hint {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 105, 180, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    z-index: 10003;
    display: none;
    animation: swipeHintPulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 280px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

@keyframes swipeHintPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.25rem;
        max-width: 100%;
        height: auto;
        padding: 15px;
        border-radius: 25px;
    }
    
    /* Hide navigation buttons on mobile in gallery */
    .lightbox-nav {
        display: none !important;
    }
    
    .reel-item {
        max-width: 140px;
    }
    
    .video-container {
        max-width: 100%;
        height: 60vh;
        max-height: 500px;
    }
    
    .play-overlay {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .scroll-instruction {
        font-size: 12px;
        padding: 8px 12px;
        right: 10px;
        top: 15px;
        position: absolute;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0.2rem;
        padding: 12px;
        border-radius: 20px;
    }
    
    .video-container {
        height: 50vh;
        max-height: 400px;
    }
    
    .videos {
        padding: 40px 0;
    }
    
    
    .social-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    /* Logos das marcas para mobile 480px - baseado nas medidas do desktop */
    #logo-seda {
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 55%;
        object-fit: contain;
        max-width: 100px;
        max-height: 50px;
    }

    #logo-dove {
        width: 500%;
        height: 70%;
        transform: translate(-50%, -50%) scale(1.0);
        left: 50%;
        top: 70%;
    }

    #logo-shein {
        width: 400%;
        height: 150%;
        transform: translate(-50%, -50%) scale(1.2);
        left: 55%;
        top: 90%;
    }

    #logo-comfort {
        width: 480%;
        height: 150%;
        transform: translate(-50%, -50%) scale(1.0);
        left: 50%;
        top: 90%;
    }

    #logo-bepantol {
        width: 420%;
        height: 55%;
        transform: translate(-50%, -50%) scale(1.1);
        left: 50%;
        top: 50%;
    }
    
    .reel-item {
        max-width: 100px;
    }
    
    .scroll-instruction {
        right: 8px;
        font-size: 10px;
        padding: 6px 10px;
        position: absolute;
        top: 10px;
        max-width: 120px;
    }
}




.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}




/* Social Media Section */
.social {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    position: relative;
    overflow: hidden;
}

.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="18" font-size="6" fill="%23FF69B4" opacity="0.06" text-anchor="middle">📷</text></pattern></defs><rect width="100" height="100" fill="url(%23social-pattern)"/></svg>');
    z-index: 0;
}

.social .section-title,
.social .section-subtitle {
    position: relative;
    z-index: 2;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-item {
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-item:hover::before {
    transform: scaleX(1);
}

.social-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.4);
}

.social-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.social-item.instagram .social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-item.tiktok .social-icon {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}


.social-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.social-handle {
    font-size: 1.2rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.social-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: center;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6);
}

/* CSS específico para links sociais */
a.social-link {
    font-size: 17px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 300;
}

.gallery .section-title {
    color: #FFE4E6;
    text-shadow: 
        0 0 8px rgba(255, 192, 203, 0.4),
        0 0 15px rgba(255, 182, 193, 0.3),
        0 0 25px rgba(255, 105, 180, 0.2);
    filter: drop-shadow(0 0 3px rgba(255, 192, 203, 0.3));
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #FFE4E6;
    background-clip: initial;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Ajuste mínimo para fotos específicas na galeria */
.gallery-item:nth-child(1) .gallery-image,
.gallery-item:nth-child(6) .gallery-image {
    object-position: center top;
}

.gallery-item:nth-child(3) .gallery-image {
    object-position: center 30%;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    position: relative;
}

.gallery-content::before {
    content: '❤️';
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: heartHeal 2s ease-in-out infinite;
}

@keyframes heartHeal {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.8));
    }
    25% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 105, 180, 1));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 1));
    }
    75% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 105, 180, 1));
    }
}

.gallery-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.gallery-content p {
    font-size: 1rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-pink);
}

.contact-details p {
    color: #666;
    font-weight: 400;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 105, 180, 0.1);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.whatsapp-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin: 0;
}

.whatsapp-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.btn-submit {
    background: var(--gradient-1);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    text-align: left;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.footer-logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), transparent);
    border-radius: 1px;
}

.footer-logo p {
    color: #b0b0b0;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1));
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-pink));
    border-color: var(--primary-pink);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
}

/* Additional Modern Effects */

/* Glow effect for interactive elements */
.gallery-item:hover,
.highlight-item:hover,
.contact-item:hover {
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lightbox Responsive Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

/* Gallery swipe hint for mobile */
.gallery-swipe-hint {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 105, 180, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    z-index: 10003;
    display: block;
    animation: swipeHintPulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 300px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.gallery-swipe-hint i {
    margin-right: 8px;
    font-size: 14px;
    animation: verticalBounce 1.5s infinite;
}

@keyframes swipeHintPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}


.lightbox-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 85vh;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 25%, #FFE4E1 50%, #FFB6C1 75%, #FF69B4 100%);
    border-radius: 30px;
    padding: 6px;
    box-shadow: 
        0 30px 100px rgba(255, 105, 180, 0.5),
        0 0 0 4px rgba(255, 182, 193, 0.9),
        inset 0 2px 10px rgba(255, 255, 255, 0.3),
        inset 0 -2px 10px rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
}


.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
    z-index: 10002;
}

.lightbox-close:hover {
    background: var(--pink-600);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--accent-pink);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 5px;
}

.lightbox-next {
    right: 5px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ========================================
   RESPONSIVE DESIGN - BREAKPOINTS
   ======================================== */

/* Large Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-photo {
        width: 350px;
        height: 450px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .reels-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* Ajuste da logo Seda para tablets */
    #logo-seda {
        transform: translate(-50%, -50%) scale(1.8);
        top: 55%;
        max-width: 140px;
        max-height: 70px;
    }
}

/* Medium Tablets (900px and below) */
@media (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-layout {
        gap: 3rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-top: 2rem;
    }
    
    .hero-photo {
        width: 300px;
        height: 380px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 182, 193, 0.1));
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
        padding: 1.5rem 0;
        border-radius: 0 0 20px 20px;
        border-top: 2px solid rgba(255, 105, 180, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.1rem;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .nav-menu li:hover::before {
        left: 100%;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        padding: 0.5rem 1.5rem;
        display: block;
        border-radius: 15px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1));
        color: var(--primary-pink);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    }
    
    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
        transition: width 0.3s ease;
    }
    
    .nav-menu .nav-link:hover::after {
        width: 80%;
    }
    
    /* Overlay quando menu está aberto */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 105, 180, 0.1);
        backdrop-filter: blur(5px);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Animação de entrada dos itens do menu */
    .nav-menu.active li {
        animation: slideInFromLeft 0.4s ease forwards;
        opacity: 0;
        transform: translateX(-50px);
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInFromLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .image-placeholder,
    .hero-photo {
        width: 300px;
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        gap: 0.2rem;
        margin-top: 4rem;
        margin-bottom: 0rem;
    }
    
    .title-line:nth-child(1) {
        font-size: 1em;
    }
    
    .title-line:nth-child(2) {
        font-size: 1em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about .hero-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .about .stat-item {
        min-width: 30%;
        padding: 1rem 0.5rem;
        flex: 1;
    }
    
    .about .stat-number {
        font-size: 2rem;
    }
    
    .about .stat-suffix {
        font-size: 2rem;
    }
    
    .stat-number-container {
        margin-bottom: 0.3rem;
    }
    
    .about .stat-label {
        font-size: 0.7rem;
        line-height: 1.1;
        letter-spacing: 0.8px;
    }
    
    .about .stat-item {
        min-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .brand-item {
        padding: 1.5rem 1rem;
    }
    
    .brand-logo {
        width: 120px;
        height: 70px;
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .brand-logo img {
        width: 200%;
        height: 200%;
        transform: translate(-50%, -50%) scale(1.8);
        transform-origin: center center;
        position: relative;
        left: 50%;
        top: 50%;
        display: block;
        margin: 0 auto;
    }
    
    /* Centralização individual das logos para mobile */
    #logo-seda {
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%) scale(1.6);
        left: 50%;
        top: 55%;
        object-fit: contain;
    }

    #logo-dove {
        width: 350%;
        height: 70%;
        transform: translate(-50%, -50%) scale(1.0);
        left: 50%;
        top: 50%;
    }

    #logo-kopenhagen {
        width: 300%;
        height: 80%;
        transform: translate(-50%, -50%) scale(1.2);
        left: 50%;
        top: 50%;
    }

    #logo-pantene {
        width: 350%;
        height: 60%;
        transform: translate(-50%, -50%) scale(1.1);
        left: 50%;
        top: 50%;
    }

    #logo-dalla {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }

    #logo-shein {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }

    #logo-comfort {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }

    #logo-bepantol {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }
}

/* Personalização individual das logos */
#logo-seda {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(2.0);
    left: 50%;
    top: 55%;
    object-fit: contain;
}


/* Versões responsivas para mobile */
@media (max-width: 768px) {
    #logo-seda {
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%) scale(1.6);
        left: 50%;
        top: 55%;
        object-fit: contain;
        max-width: 120px;
        max-height: 60px;
    }

    #logo-dove {
        width: 350%;
        height: 60%;
        transform: translate(-50%, -50%) scale(0.8);
        left: 50%;
        top: 50%;
    }

    #logo-kopenhagen {
        width: 300%;
        height: 70%;
        transform: translate(-50%, -50%) scale(1.0);
        left: 50%;
        top: 50%;
    }

    #logo-pantene {
        width: 320%;
        height: 55%;
        transform: translate(-50%, -50%) scale(0.9);
        left: 50%;
        top: 50%;
    }

    #logo-dalla {
        width: 250%;
        height: 80%;
        transform: translate(-50%, -50%) scale(1.1);
        left: 50%;
        top: 50%;
    }

    #logo-shein {
        width: 400%;
        height: 150%;
        transform: translate(-50%, -50%) scale(1.2);
        left: 55%;
        top: 90%;
    }

    #logo-comfort {
        width: 340%;
        height: 65%;
        transform: translate(-50%, -50%) scale(0.8);
        left: 50%;
        top: 50%;
    }

    #logo-bepantol {
        width: 30%;
        height: 75%;
        transform: translate(-50%, -50%) scale(0.9);
        left: 50%;
        top: 50%;
    }
}

@media (max-width: 768px) {
    .video-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .videos {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-item {
        padding: 2rem 1.5rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Fix para evitar salto no container entre 420px e 480px */
@media (max-width: 480px) and (min-width: 421px) {
    .container {
        padding: 0 20px;
    }
}

/* Fix para evitar aumento de altura do brands-grid abaixo de 407px */
@media (max-width: 407px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        height: auto !important;
        gap: 0.8rem !important;
        align-items: stretch !important;
    }
    
    .brand-item {
        padding: 1rem 0.8rem !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .brand-logo {
        width: 120px !important;
        height: 60px !important;
        margin: 0 auto 0.8rem !important;
        flex-shrink: 0 !important;
    }
    
    .brand-item h3 {
        font-size: 1rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Ajuste específico para Bepantol e Comfort Brasil */
    #logo-bepantol {
        width: 300% !important;
        height: 60% !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
        left: 50% !important;
        top: 50% !important;
    }
    
    #logo-comfort {
        width: 480% !important;
        height: 150% !important;
        transform: translate(-50%, -50%) scale(1.0) !important;
        left: 50% !important;
        top: 90% !important;
    }
    
    #logo-shein {
        width: 400% !important;
        height: 150% !important;
        transform: translate(-50%, -50%) scale(1.2) !important;
        left: 50% !important;
        top: 90% !important;
    }
}

/* Ajuste adicional para telas muito pequenas */
@media (max-width: 360px) {
    .brands-grid {
        gap: 0.6rem !important;
    }
    
    .brand-item {
        padding: 0.8rem 0.6rem !important;
    }
    
    .brand-logo {
        width: 100px !important;
        height: 50px !important;
    }
    
    .brand-item h3 {
        font-size: 0.9rem !important;
    }
}

/* Responsive fixes for contact section starting from 420px */
@media (max-width: 420px) {
    .contact {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 1.2rem 0.8rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .whatsapp-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .whatsapp-cta p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .whatsapp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 220px;
    }
    
    .cta-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-cta h3 {
        font-size: 1.6rem;
    }
    
    .whatsapp-cta p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-layout {
        gap: 1.5rem;
    }
    
    .image-placeholder,
    .hero-photo {
        width: 250px;
        height: 320px;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
        gap: 0.1rem;
        margin-top: 6rem;
        margin-bottom: 0rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .title-line:nth-child(1) {
        font-size: 1em;
        text-align: center;
        width: 100%;
    }
    
    .title-line:nth-child(2) {
        font-size: 1em;
        text-align: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .whatsapp-cta h3 {
        font-size: 1.4rem;
    }
    
    .whatsapp-cta p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

/* Lightbox Mobile */
    .lightbox-content {
        width: 85%;
        max-width: 500px;
        height: 75vh;
        max-height: 500px;
        padding: 5px;
    }
    
    .lightbox-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 16px;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent !important;
        user-select: none !important;
        z-index: 10002 !important;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: -20px;
    }
    
    .lightbox-next {
        right: -20px;
    }
    
    .lightbox-counter {
        bottom: -35px;
        font-size: 12px;
        padding: 6px 12px;
    }

     /* Centralização individual das logos para mobile */
     #logo-seda {
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%) scale(1.6);
        left: 50%;
        top: 55%;
        object-fit: contain;
    }

    #logo-dove {
        width: 350%;
        height: 70%;
        transform: translate(-50%, -50%) scale(1.0);
        left: 50%;
        top: 50%;
    }

    #logo-kopenhagen {
        width: 300%;
        height: 80%;
        transform: translate(-50%, -50%) scale(1.2);
        left: 50%;
        top: 50%;
    }

    #logo-pantene {
        width: 350%;
        height: 60%;
        transform: translate(-50%, -50%) scale(1.1);
        left: 50%;
        top: 50%;
    }

    #logo-dalla {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }

    #logo-shein {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }

    #logo-comfort {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }

    #logo-bepantol {
        width: 300%;
        height: 90%;
        transform: translate(-50%, -50%) scale(1.3);
        left: 50%;
        top: 50%;
    }
}

/* Personalização individual das logos */
#logo-seda {
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(2.0);
    left: 50%;
    top: 55%;
    object-fit: contain;
}

#logo-dove {
    width: 500%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.0);
    left: 50%;
    top: 70%;
}

#logo-kopenhagen {
    width: 400%;
    height: 70%;
    transform: translate(-50%, -50%) scale(1.2);
    left: 50%;
    top: 50%;
}

#logo-pantene {
    width: 450%;
    height: 55%;
    transform: translate(-50%, -50%) scale(1.1);
    left: 50%;
    top: 50%;
}

#logo-dalla {
    width: 300%;
    height: 90%;
    transform: translate(-50%, -50%) scale(1.3);
    left: 50%;
    top: 50%;
}

#logo-shein {
    width: 400%;
    height: 150%;
    transform: translate(-50%, -50%) scale(1.2);
    left: 55%;
    top: 90%;
}

#logo-comfort {
    width: 480%;
    height: 150%;
    transform: translate(-50%, -50%) scale(1.0);
    left: 50%;
    top: 90%;
}

#logo-bepantol {
    width: 420%;
    height: 55%;
    transform: translate(-50%, -50%) scale(1.1);
    left: 50%;
    top: 50%;

}

@media (max-width: 480px) {
    .lightbox-content {
        width: 90%;
        max-width: 450px;
        height: 65vh;
        max-height: 450px;
        padding: 4px;
        justify-content: center;
    }
    
    .lightbox-close {
        top: -35px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .reels-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.5rem;
        justify-self: center; /* Centraliza horizontalmente */
        align-self: center;   /* Centraliza verticalmente */
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: -17px;
    }
    
    .lightbox-next {
        right: -17px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-top: 4rem;
    }
    
    .hero-photo {
        width: 200px;
        height: 280px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .reels-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 0.1rem;
        padding: 8px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem 0.8rem;
    }
    
    .whatsapp-cta h3 {
        font-size: 1.3rem;
    }
    
    .whatsapp-cta p {
        font-size: 0.9rem;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .videos {
        padding: 30px 0;
    }
    
    .social-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.6rem;
    }
}

@keyframes verticalBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}
