/* ==========================================================================
   1. BASE E VARIÁVEIS
   ========================================================================== */

:root {
    --primary-color: #ffffff;
    --accent-color: #2e3b8f;
    --overlay-color-start: rgba(20, 30, 80, 0.85);
    --overlay-color-end: rgba(30, 40, 90, 0.8);
    --text-color: #ffffff;
    --background-color-2: #1a2c6b;
    --background-color-1: #f8f9fc;
    --font-family: 'Inter', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color-1);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================================================
   2. COMPONENTES COMPARTILHADOS E ANIMAÇÕES
   ========================================================================== */

/* Destaque de Texto */
.text-highlight {
    background-image: linear-gradient(120deg, rgba(46, 59, 143, 0.932) 0%, rgba(30, 40, 90, 0.911) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 100%;
    transition: background-size 4.0s ease-in-out;
    padding: 0 5px;
    display: inline;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
}

.text-highlight.is-visible {
    background-size: 100% 100%;
}

/* Botões Compartilhados */
.btn-download {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    animation: pulse-animation 2s infinite;
    overflow: hidden;
    z-index: 1;
    border: none;
}

/* Animação Letra por Letra */
.char-fade {
    opacity: 0;
    display: inline-block;
    animation: fadeInUpChar 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUpChar {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.918), transparent 30%);
    animation: rotate-border 3s linear infinite;
    z-index: -2;
}

.btn-download:hover {
    background-color: #e8e8e8;
}

.btn-download::after {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #03158d;
    border-radius: 23px;
    z-index: -1;
    transition: background-color 0.3s ease;
}


/* ==========================================================================
   3. CABEÇALHO E NAVEGAÇÃO
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: #1a2c6bb2;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(3, 4, 100, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text {
    color: #fff;
    text-transform: uppercase;
}

.logo-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a0cfff 0%, #ffffff 100%);
    border-radius: 50% 0 50% 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #acb3ec;
}

.menu-open-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* Responsividade do Cabeçalho */
@media (max-width: 768px) {
    .menu-open-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1a2c6bee;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        padding-top: 80px;
        z-index: 999;
    }

    .main-nav.nav-open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .main-nav a {
        font-size: 18px;
    }
    
    .btn-download {
        display: none;
    }
}

/* ==========================================================================
   4. SEÇÃO HERO (INICIAL)
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url(img/fundomulher.jpg); 
    background-size: cover;
    background-position: center;
    align-items: center;
    overflow: hidden; 
}


.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(43, 55, 160, 0.5);
  z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 40px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero-text.animate-on-scroll p {
    font-size: 18px;
    font-weight: 400;
    color: #c5c7db;
}

.hero-text.animate-on-scroll h1 strong {
  color: #e9e9e9;
  font-weight: 700;
  background-color: transparent;
  padding: 0px 5px 0px 5px;
  border-radius: 6px;
  font-family: roboto, sans-serif;
  transition: background-color 1s ease;
  transition-delay: 4.0s;
}

.hero-text.animate-on-scroll.is-visible h1 strong {
    background-color: #000061;
}



.app-badges {
    position: absolute;
    bottom: 40px; 
    display: flex;
    gap: 15px;
    align-items: center;
}

.badge img {
    height: 30px;
    width: auto;
    display: block;
}

/* Responsividade do Hero */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        gap: 20px;
    }

    .app-badges {
        position: relative;
        bottom: 0;
        margin-top: 30px;
        flex-direction: column;
    }
}

/* ==========================================================================
   5. AUTONOMIA E PARCEIROS
   ========================================================================== */

.autonomy-section {
    padding: 100px 0 0 0;
    position: relative;
    background-color: #ffffff;
    background-image: url(img/fundo\ ceu.png);
    background-size: cover;
    background-position: center;
}

.autonomy-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.autonomy-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 24px;
    line-height: 1.1;
    
}


.autonomy-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    line-height: 1.6; 
    font-weight: 600;
    letter-spacing: 0.4px;   
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a2b6b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #0f1a45;
}

.autonomy-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 133%;
}

.autonomy-image img {
    max-width: 250%;
    height: 100%;
    margin-left: 200px;
    max-height: 600px;
    object-fit: contain;
}

.autonomy-features h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 30px;
    line-height: 1.3;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #6e6f7279;
    border-radius: 25px;
    background-color: #040f52d3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-list li:hover {
    transform: translateX(10px);
    background-color: #272727;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: #2e3b8f;
}

.icon-box {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
    padding: 2px;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent 30%
    );
    animation: rotate-border 3s linear infinite;
    z-index: -2;
}

.icon-box::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #040f52;
    border-radius: 50%;
    z-index: -1;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.red-icon { color: #e74c3c; }
.blue-icon { color: #abb1c5; }
.cyan-icon { color: #1abc9c; }
.yellow-icon { color: #f1c40f; }
.green-icon { color: #2ecc71; }

.feature-list span {
    color: #fcfcfc;
    font-size: 15px;
    font-weight: 400;
}

/* Barra de Parceiros */
.partners-bar {
    width: 100%;
    background-color: #2e3b8f; 
    padding: 12px 0; 
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 20;
    white-space: nowrap;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.partners-bar::before,
.partners-bar::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-bar::before {
    left: 0;
    background: linear-gradient(to right, #202b6e, transparent);
}

.partners-bar::after {
    right: 0;
    background: linear-gradient(to left, #202b6e, transparent);
}

.partners-track {
    display: inline-flex;
    animation: scroll 35s linear infinite;
    gap: 0; 
}

.partners-track i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 40px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.partners-track i:hover {
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsividade da Autonomia */
@media (max-width: 992px) {
    .autonomy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .autonomy-text p {
        text-align: justify;
    }
    
    .autonomy-features h3, 
    .autonomy-features li {
        text-align: left;
    }
    
    .feature-list li {
        justify-content: flex-start;
    }

    .autonomy-features {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .autonomy-section {
        padding: 50px 0;
    }

    .autonomy-image {
        height: auto;
        margin: 40px 0;
        display: block;
        text-align: center;
    }

    .autonomy-image img {
        display: none;
    }

    .partners-bar {
        padding: 12px 0;
        margin-bottom: -50px;
    }
    
    .partners-track i {
        font-size: 24px;
        margin: 0 25px;
    }
}

/* ==========================================================================
   6. SEÇÃO DE DESIGN
   ========================================================================== */

.design-section {
    padding: 100px 0;
    background-color: var(--background-color-1);
}

.design-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.design-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a1f44;
    line-height: 1.2;
    margin-bottom: 40px;
}

.design-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.design-feature-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.design-feature-item:last-child {
    border-bottom: none;
}

.feature-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-icon {
    width: 28px;
    height: 28px;
    background-color: #c7a304;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(212, 160, 23, 0.3);
}

.feature-title-row h3 {
    font-size: 20px;
    font-weight: 600;
    color: #01075e;
}

.design-feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    padding-left: 43px;
}

/* Colagem de Design */
.design-collage {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-backdrop {
    position: absolute;
    width: 90%;
    height: 80%;
    background-image: url(img/fundosection-04.png);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    right: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.733);
    bottom: 0;
    z-index: 0;
}

.collage-img-wrapper {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.collage-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.collage-img-wrapper.img-1 {
    width: 350px;
    bottom: 0.5px;
    left: 100px;
    z-index: 10;
}

/* Responsividade do Design */
@media (max-width: 992px) {
    .design-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .design-collage {
        height: 600px; 
    }
}

@media (max-width: 768px) {
    .design-text {
        text-align: center;
    }

    .star-icon {
        width: 18px;
        height: 18px;
        font-size: 15px;
        max-width: 150px;
       
    }

    .feature-title-row {
        justify-content: center; 
    }

    .design-feature-item p {
        padding-left: 0;
    }

    .design-collage {
        height: auto;
        min-height: 400px;
        flex-direction: column;
        gap: 20px;
    }

    .collage-backdrop {
        width: 100%;
        height: 100%;
        position: absolute; 
        top: 0;
        left: 0;
    }

    .collage-img-wrapper {
        position: relative; 
        width: 80% !important;
        margin: 0 auto; 
    }
    .collage-img-wrapper.img-1 {
        left: 5%;
        margin-top: 5%;
    }
}

/* ==========================================================================
   7. CARROSSEL DE FUNCIONALIDADES
   ========================================================================== */

.features-carousel-section {
    padding: 100px 0;
    background-image: url(img/fundosection-03.png);
    background-size: cover; 
    background-position: center;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 160px;
    align-items: center;
}

.carousel-wrapper {
    position: relative;
    max-width: 600px;
}

.carousel-image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    display: grid;
    grid-template-areas: "stack";
}

.main-carousel-img {
    grid-area: stack;
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.main-carousel-img.active {
    opacity: 1;
    z-index: 1;
}

.carousel-overlay-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.carousel-overlay-card p {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.card-icon {
    align-self: flex-end;
    font-size: 28px;
    color: #2ecc71;
}

.carousel-nav {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #6b6b6d;
    color: #6b6b6d;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: #0e3db4;
    color: #fff;
    border-color: #0e3db4;
}

.features-text-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #dad9d9;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.features-details-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.features-details-list li:hover {
    background-color: #e0e0e0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.features-details-list li:hover p{
    color: #140707;
}

.plus-icon {
    font-size: 24px;
    color: #f1c40f;
    flex-shrink: 0;
    margin-top: -2px;
}

.features-details-list p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.5;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    color: var(--background-color-2);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #0e3db4;
    color: var(--text-color);
}

/* Responsividade do Carrossel */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .carousel-wrapper {
        margin: 0 auto;
    }
    
    .carousel-overlay-card {
        right: 0;
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .features-container {
        gap: 40px;
    }

    .features-carousel-section {
        padding: 60px 0;

    }

    .carousel-wrapper {
        width: 100%;
    }

    .carousel-overlay-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

    .carousel-nav {
        justify-content: center;
        margin-top: 20px;
    }

    .features-text-content {
        text-align: center;
    }
    
    .features-text-content h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-details-list li {
        text-align: left;
    }
}

/* ==========================================================================
   8. SEÇÃO JORNADA E NUVENS
   ========================================================================== */

.journey-section {
    padding: 180px 0;
    background-color: var(--background-color-1);
    position: relative;
    overflow: hidden;
}

.journey-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 50px;
    text-align: left; 
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.journey-card {
    display: flex;
    flex-direction: column;
    position: relative; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%; 
}

.journey-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.journey-card-image {
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-bottom: none; 
    height: 180px; 
    transition: border-color 0.4s ease, background-color 0.4s ease;
}

.journey-card:hover .journey-card-image {
    border-color: #dddde2;
    background-color: #f8faff;
}

.journey-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.journey-card:hover .journey-card-image img {
    transform: scale(1.1);
}

.journey-card-content {
    background-color: #1a2c6b; 
    padding: 20px 20px 35px 20px; 
    flex-grow: 1; 
    display: flex;
    align-items: flex-start;
}

.journey-card-content p {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.journey-step-badge {
    position: absolute;
    bottom: -20px;
    right: 15px; 
    width: 40px;
    height: 40px;
    background-color: #666; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 2;
}


/* Responsividade da Jornada */
@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-title {
        text-align: center;
        font-size: 28px;
    }

    .journey-card {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ==========================================================================
   9. SEÇÃO DE CUIDADOS E BENEFCÍCIOS
   ========================================================================== */

.care-section {
    padding: 100px 0;
    background-image: url(img/fundosection-03.png);
    background-size: cover; 
    background-position: center;
}


.care-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.care-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.care-header p {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    color: #b4b6c4;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.care-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.care-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 6px;
}

.care-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.care-card:hover .care-img-box img {
    transform: scale(1.05); 
}

.care-content {
    background-color: #d1d1d1ee;
    color: var(--background-color-2); 
    padding: 30px;
    margin-top: -40px; 
    margin-left: 20px; 
    border-radius: 6px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 290px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.719);
    width: 80%;
    align-self: flex-end; 
}

.care-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.care-content p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: auto; 
    opacity: 0.9;
}

.care-link {
    color: var(--background-color-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    margin-top: 20px;
}

.care-link:hover {
    gap: 12px;
}

/* Responsividade da Seção Cuidados */
@media (max-width: 992px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .care-grid {
        grid-template-columns: 1fr;
    }
    
    .care-content {
        margin-left: 10px;
        width: 95%;
    }
}

/* ==========================================================================
   10. SEÇÃO DE PREÇOS
   ========================================================================== */

.pricing-section {
    padding: 100px 0;
    background-color: #f8f9fc;
    position: relative;
}

.pricing-header {
    text-align: left;
    max-width: 100%; 
    margin: 0 0 60px; 
    padding-left: 20px; 
}

.pricing-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.322);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(1, 11, 151, 0.486);
}

.pricing-card.popular {
    border: 2px solid #2e3b8f;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(46, 59, 143, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(46, 59, 143, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e3b8f;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(46, 59, 143, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #2e3b8f;
    margin-bottom: 10px;
    line-height: 1.0;
}

.plan-price span {
    font-size: 16px;
    color: #888;
    font-weight: 500;
}

.plan-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.plan-features li i {
    color: #2ecc71;
    font-size: 16px;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #2e3b8f;
    color: #2e3b8f;
    background: transparent;
}

.btn-outline:hover {
    background-color: #2e3b8f;
    color: #fff;
}

.btn-primary {
    background-color: #2e3b8f;
    color: #fff;
    border: 2px solid #2e3b8f;
    box-shadow: 0 5px 15px rgba(46, 59, 143, 0.3);
}

.btn-primary:hover {
    background-color: #1a2b6b;
    border-color: #1a2b6b;
    box-shadow: 0 8px 20px rgba(46, 59, 143, 0.4);
}

/* Responsividade de Preços */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}

/* ==========================================================================
   11. SEÇÃO DE DEPOIMENTOS
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    background-image: url('img/fundo\ ceu.png');
    color: #0a1f44;
    background-size: cover;
    background-position: center;
}

.testimonials-header {
    margin-bottom: 60px;
    max-width: 800px;
    
}

.testimonials-header h2 {
    font-size: 34px;
    color: #0a1f44;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonials-header p {
    font-size: 18px;
    color: #666;
    opacity: 0.9;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.testimonial-overlay-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #1a2c6bf5; 
    padding: 20px;
    width: 85%;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.testimonial-overlay-box p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #fff;
}

.testimonial-info {
    margin-top: 30px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-role-rating span {
    font-size: 14px;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 2px;
    color: #c29c02;
    font-size: 12px;
}

/* Responsividade de Depoimentos */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-overlay-box {
        right: 0;
        width: 90%;
    }
}

/* ==========================================================================
   12. DASHBOARD DE IMPACTO (CHART.JS)
   ========================================================================== */

.dashboard-impact-section {
    padding: 100px 0;
    background-color: #f8faff;
}

.dashboard-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 60px 0;
}

.dashboard-header h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1f44;
    margin-bottom: 15px;
}

.dashboard-header p {
    color: #666;
    font-size: 18px;
    font-weight: 600;
}

.dashboard-header h2 strong {
    color: #2e3b8f;
    font-weight: 800;
    font-size: 38px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dashboard-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(3, 11, 83, 0.233);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(4, 54, 180, 0.39);
    border-color: rgba(42, 65, 125, 0.3);
    z-index: 10;
}

.dashboard-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2a417d;
    margin-bottom: 20px;
    text-align: center;
}

.chart-container {
    position: relative;
    height: 250px;
    width: 100%;
}

/* Responsividade do Dashboard */
@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header h2 {
        font-size: 28px;
    }
    
    .dashboard-impact-section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   13. RODAPÉ (FOOTER)
   ========================================================================== */

.footer-section {
    padding: 80px 0 30px;
    background-color: #2a417d; 
    color: #fff;
    font-family: var(--font-family);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
}

.footer-links, 
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, 
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, 
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover, 
.footer-contact a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a417d;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #eef2ff;
}

.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-app-badges img {
    height: 35px;
    width: auto;
    border-radius: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    margin: 0 5px;
}

/* Responsividade do Rodapé */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-col, 
    .social-app-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-app-badges {
        align-items: center;
    }
}

