/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4A90E2;
    --secondary-blue: #6BA3E8;
    --light-blue: #A8D5F0;
    --accent-yellow: #FFD93D;
    --accent-coral: #FF6B6B;
    --accent-green: #6BCB77;
    --light-bg: #F0F8FF;
    --white: #FFFFFF;
    --dark-text: #2C3E50;
    --light-text: #7F8C8D;
    --shadow: rgba(74, 144, 226, 0.15);
    --shadow-hover: rgba(74, 144, 226, 0.25);
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #6BA3E8 100%);
    --gradient-light: linear-gradient(135deg, #F0F8FF 0%, #E8F4F8 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--gradient-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Carousel Section */
.carousel-section {
    margin-top: 60px;
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(232, 244, 248, 0.7) 0%, rgba(74, 144, 226, 0.3) 100%);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    font-weight: 400;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #357ABD;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Sections */
.section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.section-alt {
    background: var(--gradient-light);
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Sobre Nós */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-text);
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.content-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.image-placeholder {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* EntreNós */
.entrenos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.entrenos-image {
    width: 100%;
}

.entrenos-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.entrenos-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.entrenos-content-text {
    max-width: 100%;
}

.entrenos-title {
    font-size: 2.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.entrenos-description {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 2;
    font-weight: 400;
}

/* Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: start;
}

.produto-card {
    background: linear-gradient(135deg, var(--white) 0%, #F8FBFF 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.produto-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.produto-card:hover .produto-img {
    transform: scale(1.08);
}

.produto-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.produto-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 4.2rem;
}

.produto-content p {
    color: var(--dark-text);
    line-height: 1.85;
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

/* Palestras */
.palestras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.palestra-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.palestra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.palestra-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.palestra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder-small {
    width: 100%;
    height: 100%;
}

.image-placeholder-small svg {
    width: 100%;
    height: 100%;
}

.palestra-content {
    padding: 2rem;
}

.palestra-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.palestra-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

/* Missão e Valores */
.missao-valores-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.missao-valores-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.missao-valores-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #F8FBFF 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.missao-valores-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.missao-valores-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.missao-valores-icon svg {
    width: 100%;
    height: 100%;
}

.missao-valores-content-text {
    flex: 1;
}

.missao-valores-content-text h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.missao-valores-content-text p {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.missao-valores-image {
    width: 100%;
}

.missao-valores-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.missao-valores-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

/* Vamos Cuidar */
.vamos-cuidar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.vamos-cuidar-image {
    width: 100%;
}

.vamos-cuidar-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vamos-cuidar-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.vamos-cuidar-text {
    max-width: 100%;
}

.vamos-cuidar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.vamos-cuidar-list li {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.vamos-cuidar-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    line-height: 1.5;
}

.vamos-cuidar-conclusion {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.9;
    margin: 2rem 0 0 0;
    padding-top: 2rem;
    border-top: 2px solid rgba(74, 144, 226, 0.2);
}

/* Institucional */
.institucional-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.institucional-item {
    margin-bottom: 2.5rem;
}

.institucional-item:last-child {
    margin-bottom: 0;
}

.institucional-text h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 600;
}

.institucional-text p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.valores-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.valores-list li {
    color: var(--light-text);
    line-height: 2;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.valores-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    line-height: 1.5;
}

.institucional-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-contact-section {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    background: transparent;
    padding: 0;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    background: transparent !important;
    padding: 0;
    margin: 0;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-item-inline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.contact-item-inline strong {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.contact-item-inline span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-item-inline .social-links {
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.content-text p,
.entrenos-description,
.vamos-cuidar-list li {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.content-text p:nth-child(1) { animation-delay: 0.1s; }
.content-text p:nth-child(2) { animation-delay: 0.2s; }
.entrenos-description { animation-delay: 0.2s; }
.vamos-cuidar-list li:nth-child(1) { animation-delay: 0.1s; }
.vamos-cuidar-list li:nth-child(2) { animation-delay: 0.2s; }
.vamos-cuidar-list li:nth-child(3) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 1200px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.75rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .carousel-section {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
        margin-top: 55px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .content-grid,
    .institucional-content,
    .entrenos-grid,
    .missao-valores-content,
    .vamos-cuidar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .entrenos-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .entrenos-description {
        font-size: 1.05rem;
    }

    .missao-valores-item {
        padding: 2rem;
        gap: 1.25rem;
    }

    .missao-valores-icon {
        width: 50px;
        height: 50px;
    }

    .missao-valores-content-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .missao-valores-content-text p {
        font-size: 1rem;
    }

    .vamos-cuidar-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .vamos-cuidar-conclusion {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-horizontal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .produto-image {
        height: 250px;
    }

    .produto-content {
        padding: 2rem;
        gap: 1.25rem;
    }

    .produto-content h3 {
        font-size: 1.25rem;
        min-height: auto;
    }

    .produto-content p {
        font-size: 0.95rem;
    }

    .institucional-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0.5rem 15px;
    }

    .logo-img {
        height: 35px;
    }

    .carousel-section {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
        margin-top: 50px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }

    .carousel-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -15px;
    }

    .content-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .content-text {
        font-size: 0.95rem;
    }

    .lead-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .content-img,
    .entrenos-img,
    .missao-valores-img,
    .vamos-cuidar-img {
        border-radius: 15px;
    }

    .entrenos-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .entrenos-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .entrenos-description {
        font-size: 1rem;
        line-height: 1.8;
    }

    .produtos-grid {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .produto-card {
        border-radius: 20px;
    }

    .produto-image {
        height: 220px;
    }

    .produto-content {
        padding: 1.5rem;
        gap: 1rem;
    }

    .produto-content h3 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .produto-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .missao-valores-content {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .missao-valores-item {
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 15px;
    }

    .missao-valores-icon {
        width: 45px;
        height: 45px;
    }

    .missao-valores-content-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .missao-valores-content-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .vamos-cuidar-content {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .vamos-cuidar-list li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .vamos-cuidar-conclusion {
        font-size: 1rem;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-item-inline {
        gap: 0.4rem;
    }

    .contact-item-inline strong {
        font-size: 0.85rem;
    }

    .contact-item-inline span {
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.75rem;
    }

    .institucional-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

