* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll suave para navegação por âncoras */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
}

.header {
    background: #fdf7f1;
    padding: 35px 0;
    position: relative;
}

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

.logo img {
    height: 112.5px;
    width: auto;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #725889;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-item.active .nav-link {
    color: #f59e0b;
    font-weight: 600;
}

.nav-link:hover {
    color: #f59e0b;
}

.nav-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.active .nav-underline {
    width: 100%;
    animation: slideIn 0.6s ease-out;
}

.nav-item:hover .nav-underline {
    width: 100%;
}

@keyframes slideIn {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(-10px);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        width: 100%;
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animação sutil para o item ativo */
.nav-item.active .nav-underline {
    animation: slideIn 0.6s ease-out, glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
    }
}

/* Menu Hambúrguer */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #725889;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay quando menu está aberto */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Prevenir scroll quando menu está aberto */
body.menu-open {
    overflow: hidden;
}

.main {
    min-height: 80vh;
}

/* Hero Section */
.hero {
    background-color: #FDF7F1;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Bordas coloridas decorativas para a imagem da médica */
.image-border {
    position: absolute;
    z-index: 1;
}

.image-border-left {
    top: 0;
    left: -20px;
    width: 20px;
    height: 100%;
    background: #ECE1E8;
}

.image-border-top {
    top: -35px;
    left: -20px;
    width: calc(100% + 40px);
    height: 35px;
    background: #F9E8D5;
}

.image-border-bottom {
    bottom: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: 20px;
    background: #F9E8D5;
}

.image-border-right {
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    background: #E9F0E8;
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slowRotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: -60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 74px;
    font-weight: 950;
    color: #725889;
    line-height: 1;
    margin-bottom: 30px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-title-highlight {
    color: #725889;
    font-weight: 900;
    background-color: #b3dcd9;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero-button {
    background: linear-gradient(135deg, #F1C992 0%, #E6B87D 100%);
    border: none;
    border-radius: 6px;
    padding: 20px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #725889;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    text-decoration: none;
    width: fit-content;
}

.hero-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #F5D4A6 0%, #EAC291 100%);
}

.button-icon {
    font-size: 14px;
}

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

.image-container {
    position: relative;
    z-index: 2;
}

.doctor-image {
    width: 400px;
    height: auto;
    border-radius: 0;
    animation: fadeInScale 1s ease-out 0.3s both;
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: -50px;
    background: linear-gradient(135deg, #FF9B9B 0%, #FF7B7B 100%);
    color: white;
    padding: 30px;
    border-radius: 0;
    border-bottom: 15px solid #B9E1D6;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(255, 155, 155, 0.3);
    z-index: 3;
    animation: bounceIn 1s ease-out 0.8s both;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-badge:hover {
    transform: translateY(-15px) scale(1.1) rotate(3deg);
    background: linear-gradient(135deg, #FFB3B3 0%, #FF9393 100%);
    border-bottom-color: #A8E6D2;
}

.play-button {
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9DD4C3 0%, #7BC4A8 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(157, 212, 195, 0.4);
    z-index: 3;
    transition: all 0.3s ease;
    animation: fadeInRight 0.8s ease-out 1s both;
}

.play-button:hover {
    transform: scale(1.2) rotate(15deg) translateY(-15px);
    background: linear-gradient(135deg, #B5EAD7 0%, #9BD4C3 100%);
}

.decorative-element {
    position: absolute;
    top: 50%;
    right: -200px;
    z-index: 1;
    opacity: 0.8;
    animation: fadeInRight 1.2s ease-out 0.5s both, slowRotate 20s linear infinite;
}

.reta-svg {
    width: 500px;
    height: auto;
}

/* Seção Suporte Muito Além do Kit */
.support-section {
    padding: 80px 0;
    background: #B9E1D6;
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 70%;
    height: calc(100% + 40px);
    background: #FDF7F1;
    z-index: 0;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-text {
    padding-right: 40px;
}

.support-title {
    color: #725889;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}

.support-description {
    color: #666;
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.support-description strong {
    color: #725889;
    font-weight: 700;
}

.support-button {
    background: #E6C89A;
    color: #725889;
    border: none;
    padding: 18px 35px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-button:hover {
    background: #DDB885;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.support-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.player-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Seção Depoimentos e Parceiros */
.testimonials-partners-section {
    width: 100%;
    background: transparent;
    padding: 0;
    margin: 0;
}

.testimonials-partners-container {
    display: flex;
    width: 100%;
    min-height: 500px;
    margin: 0;
    padding: 0;
}

.testimonials-side {
    background-color: #E69A92;
    width: 40%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    margin-top: -40px;
    align-items: flex-end;
    text-align: right;
}

.partners-side {
    background-color: #FFFFFF;
    width: 60%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.testimonials-title {
    color: white;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: right;
}

.testimonials-carousel {
    position: relative;
    height: 380px;
    overflow: hidden;
    width: 85%;
    margin-right: -60px;
    perspective: 1000px;
}

.testimonial-card {
    background: #FAF1EC;
    padding: 35px 50px;
    border-radius: 0;
    margin-bottom: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    border-bottom: 25px solid #B9E1D7;
    box-shadow: 0 15px 40px rgba(0.15, 0.15, 0, 0);
    display: none;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: scale(1) translateY(0);
}

.testimonial-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.quote-icon {
    font-size: 64px;
    color: #725889;
    margin-bottom: 25px;
    line-height: 1;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(114, 88, 137, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card.active .quote-icon {
    transform: scale(1.1);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-card .author {
    font-size: 18px;
    font-weight: 700;
    color: #E69B92;
    margin-bottom: 5px;
}

.testimonial-text {
    color: #725889;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #E69B92;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.carousel-controls {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    background: #B9E1D6;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #A5D4C7;
    transform: scale(1.1);
}

.partners-title {
    color: #725889;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    margin-left: 70px;
    text-align: left;
    position: relative;
}

.partners-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: #E6C89A;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    max-width: 650px;
    margin: 0;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}

.partner-logo img {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 40px 0;
    }
    
    .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 20px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fdf7f1;
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        height: 100%;
        justify-content: flex-start;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(114, 88, 137, 0.1);
    }
    
    .nav-link {
        font-size: 18px;
        padding: 20px 0;
        display: block;
        width: 100%;
    }
    
    .nav-underline {
        bottom: 0;
    }
    
    .logo img {
        height: 70px;
    }
    
    /* Hero responsivo */
    .hero {
        padding: 80px 0 40px 0;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        font-weight: 800;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .doctor-image {
        width: 300px;
    }
    
    .experience-badge {
        right: -20px;
        padding: 15px;
        font-size: 12px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .decorative-element {
        display: none;
    }
}

/* Linha verde decorativa no canto superior esquerdo */
.green-line-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 300px;
    background: #90CEB8;
    z-index: 1000;
    border-radius: 0 0 4px 0;
    box-shadow: 2px 2px 10px rgba(185, 225, 214, 0.3);
    animation: slideInFromTop 1s ease-out 0.5s both;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container dos ícones sociais verticais */
.social-icons-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
}

/* Estilo dos ícones sociais verticais */
.social-icon-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.social-icon-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-icon-vertical:hover::before {
    transform: scale(1);
}

.social-icon-vertical:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-vertical svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-icon-vertical:hover svg {
    transform: scale(1.1);
}

/* Cores específicas para cada rede social no hover */
.social-icon-vertical.instagram:hover {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
    border-color: #E4405F;
}

.social-icon-vertical.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon-vertical.tiktok:hover {
    background: linear-gradient(45deg, #FF0050, #000000);
    border-color: #FF0050;
}

.social-icon-vertical.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* Animação de entrada escalonada para os ícones */
.social-icon-vertical {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpStaggered 0.6s ease-out forwards;
}

.social-icon-vertical:nth-child(1) { animation-delay: 1s; }
.social-icon-vertical:nth-child(2) { animation-delay: 1.2s; }
.social-icon-vertical:nth-child(3) { animation-delay: 1.4s; }
.social-icon-vertical:nth-child(4) { animation-delay: 1.6s; }

@keyframes fadeInUpStaggered {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nuvem decorativa */
.cloud-decoration {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    margin: -40px 0 -40px 0;
    z-index: 50;
    pointer-events: none;
}

.cloud-image {
    width: 250px;
    height: auto;
    opacity: 0.7;
    animation: cloudFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 51;
}

/* Animação de balanço suave da nuvem */
@keyframes cloudFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateX(20px) translateY(0) rotate(0deg);
    }
    75% {
        transform: translateX(10px) translateY(5px) rotate(-1deg);
    }
}

/* Responsividade para a nuvem */
@media (max-width: 768px) {
    .cloud-decoration {
        top: -60px;
        left: 3%;
        width: 200px;
        height: 120px;
    }
    
    .cloud-image {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .cloud-decoration {
        top: -40px;
        left: 2%;
        width: 150px;
        height: 100px;
    }
    
    .cloud-image {
        width: 150px;
    }
}

/* Responsividade para ícones sociais verticais */
@media (max-width: 768px) {
    .green-line-decoration {
        width: 60px;
        height: 250px;
    }
    
    .social-icons-vertical {
        gap: 15px;
        padding: 15px 0;
    }
    
    .social-icon-vertical {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-vertical svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .green-line-decoration {
        width: 50px;
        height: 200px;
    }
    
    .social-icons-vertical {
        gap: 12px;
        padding: 10px 0;
    }
    
    .social-icon-vertical {
        width: 30px;
        height: 30px;
    }
    
    .social-icon-vertical svg {
        width: 16px;
        height: 16px;
    }
    
    .social-icon-vertical:hover {
        transform: translateX(3px) scale(1.05);
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Seção Sobre o Kit */
.about-kit {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
    margin-top: 0;
}

.about-kit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-kit-image {
    flex: 1;
    position: relative;
    animation: slideInFromLeft 1.2s ease-out 0.3s both;
}

.about-kit-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50vw;
    width: calc(50vw + 400px);
    height: 200px;
    background: #E69A92;
    z-index: 0;
    border-radius: 0;
}

.about-kit-image img {
    width: 100%;
    height: auto;
    max-width: 850px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.about-kit-content {
    flex: 1;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.about-kit-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.badge-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #F1C992 0%, #E6B87A 100%);
    border-radius: 2px;
}

.about-kit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 68px;
    font-weight: 900;
    color: #8B5A9F;
    margin: 0;
    line-height: 1.2;
}

.about-kit-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.highlight-text {
    font-weight: 700;
    color: #725889;
}

.about-kit-button {
    background: linear-gradient(135deg, #F1C992 0%, #E6B87A 100%);
    color: #8B5A9F;
    border: none;
    padding: 18px 35px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.about-kit-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #F5D4A6 0%, #EAC291 100%);
}

.about-kit-button .button-icon {
    font-size: 14px;
}

/* Ícones flutuantes na seção Sobre o Kit */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #f7f2fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    animation: floatGentle 8s ease-in-out infinite;
}

.floating-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(1000%) hue-rotate(260deg) brightness(95%) contrast(85%);
}

/* Posicionamento específico de cada ícone */
.floating-icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.floating-icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
    animation-duration: 9s;
}

.floating-icon-3 {
    top: 60%;
    left: 8%;
    animation-delay: 3s;
    animation-duration: 8s;
}

.floating-icon-4 {
    top: 70%;
    right: 20%;
    animation-delay: 4.5s;
    animation-duration: 7.5s;
}

.floating-icon-5 {
    top: 40%;
    left: 15%;
    animation-delay: 2s;
    animation-duration: 8.5s;
}

.floating-icon-6 {
    top: 80%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 9.5s;
}

/* Animação suave de flutuação */
@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(2deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-8px) translateX(-5px) rotate(-1deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) translateX(8px) rotate(1deg);
        opacity: 0.5;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .about-kit-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-kit-title {
        font-size: 36px;
    }
    
    .about-kit-description {
        font-size: 16px;
    }
    
    /* Ícones menores em dispositivos móveis */
    .floating-icon {
        width: 60px;
        height: 60px;
        opacity: 0.4;
    }
    
    .floating-icon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    /* Ícones ainda menores em smartphones */
    .floating-icon {
        width: 50px;
        height: 50px;
        opacity: 0.3;
    }
    
    .floating-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Seção O que compõe o kit? */
.kit-composition {
    padding: 80px 0;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

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

/* Overlay removido - a imagem das crianças fica melhor sem ele */

.kit-composition-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.kit-composition-title {
    color: white;
    font-size: 68px;
    font-weight: 900;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    
    /* Estado inicial para animação */
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animação quando o card fica visível */
.product-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delays escalonados para cada card */
.product-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.product-card:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.product-card:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.product-card:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

.product-card:nth-child(5).animate-in {
    transition-delay: 0.5s;
}

.product-card:nth-child(6).animate-in {
    transition-delay: 0.6s;
}

.product-card.animate-in:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A186B6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-icon:hover {
    background: #8B6FA3;
    transform: scale(1.1);
}

.product-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.product-title {
    color: #725889;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-description {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.kit-composition-button {
    background: white;
    color: #A882BD;
    border: none;
    padding: 22px 50px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.kit-composition-button:hover {
    transform: translateY(-3px);
    background: #f8f8f8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.kit-composition-button .button-icon {
    font-size: 14px;
}

/* Responsividade para Kit Composition */
@media (max-width: 768px) {
    .kit-composition {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .kit-background-image {
        object-position: center top;
        height: 100%;
    }
    
    .kit-composition-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .product-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .kit-composition-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Hero para telas muito pequenas */
    .hero {
        padding: 90px 0 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-description {
        margin-bottom: 20px;
    }
    
    .hero-content {
        gap: 70px;
    }
    
    .kit-composition {
        min-height: 450px;
    }
    
    .kit-background-image {
        object-position: center top;
        height: 100%;
    }
    
    .kit-composition-container {
        padding: 0 15px;
    }
    
    .kit-composition-title {
        font-size: 28px;
    }
    
    .product-card {
        padding: 20px 15px;
    }

    /* Responsividade da seção de suporte */
    .support-section {
        padding: 60px 0;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .support-text {
        padding-right: 0;
    }

    .support-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .support-description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .support-button {
        padding: 16px 30px;
        font-size: 16px;
    }

    .video-player {
        max-width: 400px;
    }

    /* Responsividade da seção de depoimentos e parceiros */
    .testimonials-partners-section {
        flex-direction: column;
        min-height: auto;
    }

    .testimonials-partners-container {
        flex-direction: column;
    }

    .testimonials-side,
    .partners-side {
        width: 100%;
        padding: 60px 30px;
    }
    
    .testimonials-side {
        text-align: center;
        align-items: center;
    }

    .testimonials-title,
    .partners-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 30px;
    }

    .testimonials-carousel {
        height: 400px;
        width: 100%;
        margin-right: 0;
        overflow: visible;
    }

    .testimonial-card {
        padding: 25px 20px;
        height: auto;
        min-height: 350px;
    }

    .testimonial-content {
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .quote-icon {
        font-size: 60px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .carousel-controls {
        justify-content: center;
        margin-top: 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .testimonial-author {
        margin-top: auto;
        padding-top: 20px;
        flex-shrink: 0;
        justify-content: center;
        text-align: center;
    }

    .author-photo {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 16px;
    }

    .partners-grid {
        gap: 30px;
    }

    .partner-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Footer com Redes Sociais */
.social-footer {
    background: linear-gradient(135deg, #8B5A9F 0%, #725889 50%, #5D4A73 100%);
    padding: 40px 0;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.social-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.social-icons {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E4405F, #F56040, #FCAF45);
    border-color: #E4405F;
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #FF0050, #000000);
    border-color: #FF0050;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link i {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .social-footer {
        padding: 30px 0;
    }
    
    .social-container {
        padding: 0 20px;
    }
    
    .social-icons {
        gap: 40px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 30px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #725889 0%, #8B5A9F 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(114, 88, 137, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #8B5A9F 0%, #9D6BB3 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(114, 88, 137, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}