/* Design System - All colors must be HSL */
:root {
    --background: 0 0% 100%;
    --foreground: 210 20% 20%;
    --card: 0 0% 100%;
    --card-foreground: 210 20% 20%;
    --primary: 210 70% 55%;
    --primary-foreground: 0 0% 100%;
    --secondary: 180 60% 60%;
    --secondary-foreground: 0 0% 100%;
    --muted: 200 70% 92%;
    --muted-foreground: 210 20% 35%;
    --accent: 200 80% 88%;
    --accent-foreground: 210 20% 20%;
    --border: 210 30% 88%;
    --radius: 1rem;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Container Padding */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1025px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: hsla(var(--background), 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px hsla(210, 50%, 40%, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-weight: bold;
    font-size: 1.125rem;
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: none;
}

/* Mobile Small (até 480px) */
@media (max-width: 480px) {
    .header {
        border-bottom: 1px solid hsl(var(--border));
    }

    .header-content {
        height: 70px;
        gap: 0.5rem;
        justify-content: flex-start;
        padding: 0 0.75rem;
    }

    .logo-text {
        display: block;
    }

    .logo-name {
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1.2;
        color: #032e69;
        margin: 0;
    }

    .logo-subtitle {
        font-size: 0.625rem;
        color: #032e69;
        margin: 0;
        line-height: 1.3;
    }

    .logo-circle {
        width: 36px;
        height: 36px;
    }

    .cta-button {
        display: none !important;
    }

    /* Força exibição do botão do carrossel no mobile */
    .carousel-cta-button {
        display: inline-flex !important;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .menu-toggle {
        margin-left: auto;
        flex-shrink: 0;
        padding: 0.375rem;
    }
}

/* Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .header {
        border-bottom: 1px solid hsl(var(--border));
    }

    .header-content {
        height: 75px;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .logo-text {
        display: block;
    }

    .logo-name {
        font-size: 0.875rem;
        font-weight: 600;
        line-height: 1.2;
        color: #032e69;
        margin: 0;
    }

    .logo-subtitle {
        font-size: 0.6875rem;
        color: #032e69;
        margin: 0;
        line-height: 1.3;
    }

    .cta-button {
        display: none !important;
    }

    /* Força exibição do botão do carrossel no tablet */
    .carousel-cta-button {
        display: inline-flex !important;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .menu-toggle {
        margin-left: auto;
        flex-shrink: 0;
    }
}

.logo-name {
    font-weight: 600;
    line-height: 1.2;
    color: #032e69;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #032e69;
}

.nav-desktop {
    display: none;
    gap: 1.5rem;
}

.nav-desktop button {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #032e69;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-desktop button:hover {
    color: hsl(var(--primary));
}

.cta-button {
    display: none;
    background: linear-gradient(90deg, #d4feec, #95b5f3);
    color: #032e69;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: hsl(var(--secondary) / 0.9);
    transform: translateY(-1px);
}

.cta-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(13%) sepia(54%) saturate(1744%) hue-rotate(194deg) brightness(95%) contrast(92%);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border));
    background: hsla(var(--background), 0.95);
    backdrop-filter: blur(12px);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu button {
    background: none;
    border: none;
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.mobile-menu button:hover {
    background: hsl(var(--muted));
}

.mobile-menu .cta-button {
    display: block;
    margin: 1rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-grid {
    display: grid;

    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section - Mobile Extra Small (360px) */
@media (max-width: 360px) {
    .hero-title {
        height: 140px !important;
        font-size: 27px !important;
        width: 69% !important;
    }
    
    .btn-outline {
        width: auto !important;
        font-size: 10px !important;
        white-space: nowrap !important;
    }
}

/* Hero Section - Mobile Small (até 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 0;
    }
    
    .hero-title {
        font-size: 1.25rem;
        max-width: 100%;
        text-align: center;
        height: auto;
    }
    
    .btn-outline {
        font-size: 13px !important;
        padding: 8px 16px !important;
        border-radius: 5px !important;
        color: #032e69 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        font-weight: 500 !important;
        margin-top: 10px !important;
        width: auto;
        text-wrap: nowrap;
        margin-top: -22px !important;
        margin-bottom: 10px !important;
    }
    
    .btn-hero {
        width: 100% !important;
        align-items: center;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        align-items: center;
        width: 100%;
        margin-left: 36px !important;
    }
    
    /* Botão Agende Sua Consulta - oculto no mobile */
    .btn-agende-mobile {
        display: none !important;
    }
    
    .btn-agende-icon {
        width: 18px;
        height: 18px;
    }
}

/* Hero Section - Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 5.5rem 0 3.5rem;
    }
    
    .hero-grid {
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        max-width: 100%;
        height: auto;

    }
    
    .btn-outline {
        font-size: 15px !important;
        padding: 10px 20px !important;
        border-radius: 5px !important;
        color: #032e69 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        font-weight: 500 !important;
        margin-top: 10px !important;
    }
    
    .btn-hero {
        width: 100% !important;
        align-items: center;
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        align-items: center;
        width: 100%;
        padding: 0 1.5rem;
    }
    
    /* Botão Agende Sua Consulta - oculto no mobile */
    .btn-agende-mobile {
        display: none !important;
    }
}

/* Quote Section - Mobile Small (até 480px) */
@media (max-width: 480px) {
    .quote-bg-images {
        display: none !important;
    }

    .quote-section {
        padding: 2.5rem 1rem;
        background-image: url('aperto-mao.jpeg');
        background-size: cover;
        background-position: center;
        min-height: 220px;
        display: flex;
        align-items: center;
    }

    .quote-section::before {
        background: linear-gradient(135deg, #73a7ae, #00278b) !important;
        opacity: 0.85;
        z-index: 1;
    }

    .quote-section .container {
        z-index: 2;
        position: relative;
        width: 100%;
        padding: 0 1rem;
    }

    .quote-content-desktop {
        display: none !important;
    }

    .quote-content-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #ffffff;
        position: relative;
        z-index: 3;
    }

    .quote-content-mobile blockquote {
        font-size: 1.125rem;
        font-weight: 500;
        letter-spacing: normal;
        text-transform: none;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        font-family: 'Inter', sans-serif;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .quote-content-mobile cite {
        font-size: 0.9375rem;
        letter-spacing: 0.05em;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* Quote Section - Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .quote-section {
        padding: 3rem 1.5rem;
        min-height: 255px;
    }
    
    .quote-content-mobile blockquote {
        font-size: 1.25rem;
    }
    
    .quote-content-mobile cite {
        font-size: 1rem;
    }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(var(--muted) / 0.5);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.hero-badge i {
    width: 16px;
    height: 16px;
    color: hsl(var(--secondary));
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 77%;
    width: 100%;
    text-align: left;
    white-space: normal;
    word-spacing: normal;
    height: 330px;
}
@media (max-width: 768px) {
    .hero-title {
        height: 250px;
        max-width: 73% !important;
        font-size: 2.3rem !important;
    }
}

.text-primary {
    color: hsl(var(--primary));
}
.text-secondary {
    color: hsl(var(--secondary));
}

.hero-text-dark {
    color: #032e69;
}

.hero-ato-line {
    white-space: nowrap;
    display: inline;
}

.hero-text-dark img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    max-width: 80px;
    height: auto;
    margin-left: 0.5rem;
    margin-right: 0.25rem;
}

@media (max-width: 480px) {
    .hero-text-dark img {
        max-width: 60px;
        margin-left: 0.25rem;
        margin-right: 0.125rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-text-dark img {
        max-width: 70px;
        margin-left: 0.375rem;
    }
}

.hero-text-inline {
    display: inline;
}

.text-gradient {
    background: linear-gradient(180deg, #46a7b4 0%, #1a43ad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heart-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: hsl(var(--secondary));
    animation: pulse 2s infinite;
}

.typewriter-text {
    display: inline;
}

.typewriter-cursor {
    display: inline-block;
    vertical-align: baseline;
    animation: blink 1s infinite;
    line-height: 1;
}

.typewriter-cursor img {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
    vertical-align: baseline;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px hsla(var(--secondary), 0.3);
}

.btn-primary:hover {
    background: hsl(var(--secondary) / 0.9);
    box-shadow: 0 6px 30px hsla(var(--secondary), 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: linear-gradient(90deg, #d4feec, #85aefe);
    color: hsl(var(--foreground));
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 2px;
    margin-left: 65px;
}

/* Botão Agende Sua Consulta - Mobile Only */
.btn-agende-mobile {
    display: none;
    background: linear-gradient(90deg, #d4feec, #85aefe);
    color: #032e69;
    border: none;
    border-radius: 5px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: auto;
    max-width: 100%;
    margin: 1.5rem auto 0;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px hsla(210, 50%, 40%, 0.15);
    text-wrap: nowrap;
}

.btn-agende-mobile:hover {
    background: linear-gradient(90deg, #c0f5e0, #7298f0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(210, 50%, 40%, 0.25);
}

.btn-agende-icon {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) saturate(100%) invert(13%) sepia(54%) saturate(1744%) hue-rotate(194deg) brightness(95%) contrast(92%);
}

.btn-outline:hover {
    background: linear-gradient(90deg, #c0f5e0, #7298f0);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px hsla(210, 50%, 40%, 0.2);
}

.hero-image {
    position: relative;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.image-placeholder {
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: hsl(var(--muted-foreground));
    transition: transform 0.5s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-sizing: border-box;
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s infinite;
}

.decoration-1 {
    width: 96px;
    height: 96px;
    background: hsl(var(--secondary) / 0.2);
    top: -1rem;
    right: -1rem;
}

.decoration-2 {
    width: 128px;
    height: 128px;
    background: hsl(var(--primary) / 0.2);
    bottom: -1rem;
    left: -1rem;
    animation-delay: 0.3s;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.3));
}

.section-header {
    text-align: center;
    margin: 0 auto 4rem;
}

.services .section-header {
    display: none;
}

.section-header h2 {
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header p {
    font-size: 30px;
    color: #0e3c7e;
    max-width: 590px;
    margin: 0 auto;
    text-align: center;
}
.testimonials .section-header {
    text-align: left;
    margin-left: 60px;
    margin-bottom: 2rem;
}

.testimonials .section-header p {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 768px) {
    .testimonials .section-header {
        margin-left: 0;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .testimonials .section-header h2 {
        font-size: 1.5rem;
    }

    .testimonials .section-header p {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
        font-size: 0.9375rem;
    }
}
.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transform: translateX(0);
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-x pan-y pinch-zoom;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track.dragging {
    cursor: grabbing !important;
}

.carousel-track.dragging .service-card {
    pointer-events: none;
    cursor: grabbing !important;
}

.service-card {
    flex: 0 0 100%;
    border-radius: var(--radius);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    box-shadow: 0 8px 30px hsla(210, 50%, 40%, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    width: 150px;
    height: 105px;
    background: linear-gradient(135deg, #d4feec 0%, #85aefe 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px hsla(var(--primary), 0.3);
}

.service-icon i {
    width: 40px;
    height: 40px;
    color: hsl(var(--primary));
}

/* Ícones – mesma cor mobile e desktop (filtro único) */
.service-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    filter:
        brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1500%)
        hue-rotate(188deg) brightness(92%) contrast(91%);
}

.service-icon svg * {
    fill: #000 !important;
    stroke: #000 !important;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    /* Filtro para aproximar rgb(39, 98, 180) em PNG */
    filter:
        brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1500%)
        hue-rotate(188deg) brightness(92%) contrast(91%);
}

.service-icon img.service-icon-maleta,
.service-icon-maleta {
    filter:
        brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1500%)
        hue-rotate(188deg) brightness(92%) contrast(91%);
}

.service-icon-sonho {
    position: relative;
}

.service-icon-sonho img {
    filter:
        brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1500%)
        hue-rotate(188deg) brightness(92%) contrast(91%);
}

/* Ícones maiores apenas no desktop - Falta de Direção */
@media (min-width: 1024px) {
    /* .service-icon-direcao {
        width: 180px;
        height: 126px;
    } */
    .service-icon-direcao svg {
        width: 56px;
        height: 56px;
    }
}

/* Ícone maior apenas no card Vícios e Autocontrole (desktop) */
@media (min-width: 1024px) {

    .service-card[data-service-title="Vícios e Autocontrole"] .service-icon svg {
        width: 80px;
        height: 80px;
    }
}
@media (max-width: 768px) {
    .service-card[data-service-title="Vícios e Autocontrole"] .service-icon svg {
        width: 90px;
        height: 90px;
    }
}


.service-card h3 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2762b4;
    font-size: 1.125rem;
    width: 100%;
}

.service-card p {
    font-size: 0.875rem;
    color: #114389;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    max-width: 200px;
}

/* Ocultar descrição em mobile */
@media (max-width: 768px) {
    .service-card-description {
        display: none;
    }
    
    .service-card {
        cursor: pointer;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
    }
}

/* Estilos do Modal de Service Card */
.service-card-modal-content {
    text-align: center;
}

.service-card-modal-content .modal-title {
    text-align: center;
    color: #2762b4;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card-modal-content .modal-body {
    text-align: center;
    color: #114389;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-card-modal-content {
        max-width: 90%;
    }
    
    .service-card-modal-content .modal-title {
        font-size: 1.25rem;
    }
    
    .service-card-modal-content .modal-body {
        font-size: 0.9375rem;
    }
}

.carousel-btn {
    display: none;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #124994;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 12px hsla(var(--primary), 0.3);
}

.carousel-btn:hover {
    background: #124994;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px hsla(var(--primary), 0.4);
}

.carousel-btn i {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary-foreground));
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

/* Carousel Intro Text */
.carousel-intro-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #032e69;
    margin-bottom: 2rem;
    margin-top: -1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Carousel CTA Wrapper */
.carousel-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.carousel-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #d4feec, #95b5f3);
    color: #032e69;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.carousel-cta-button:hover {
    background: hsl(var(--secondary) / 0.9);
    transform: translateY(-1px);
}

/* CTA entre seções */
.cta-between-sections {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.2));
}

.cta-between-sections-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-between-sections .carousel-cta-button {
    display: inline-flex;
}

/* Approach Section */
.approach-section {
    padding: 5rem 0;
    background: hsl(180, 45%, 15%);
    color: hsl(0, 0%, 100%);
}

.approach-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: hsl(0, 0%, 100%);
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: transparent;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-icon i {
    width: 80px;
    height: 80px;
    color: #FF69B4;
    stroke-width: 1.5;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: hsla(0, 0%, 100%, 0.9);
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.quote-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 0;
}

.quote-bg-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quote-bg-left {
    background-image: url('fundo-frase.jpg');
    /* Adicione a primeira imagem aqui */
}

.quote-bg-right {
    background-image: url('fundo-frase.jpg');
    background-position: inherit;
    /* Adicione a segunda imagem aqui */
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 254, 236, 0.85) 0%, rgba(133, 174, 254, 0.85) 100%);
    z-index: 1;
}

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

.quote-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.quote-content-mobile {
    display: none;
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: hsl(var(--primary) / 0.3);
    margin: 0 auto 1.5rem;
}

.quote-content blockquote {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.quote-content cite {
    display: block;
    font-size: 14px;
    color: hsl(var(--muted-foreground));
    letter-spacing: 0.1em;
    font-style: normal !important;
}

/* Desktop Quote Styles */
.quote-content-desktop blockquote {
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.5;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.quote-content-desktop cite {
    display: block;
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    letter-spacing: 0.2em;
    font-style: normal !important;
    text-transform: uppercase;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: hsl(var(--background));
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.about-image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.about-image .image-placeholder {
    border-radius: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-badge {
    display: inline-block;
    border-radius: 9999px;
    font-size: 25px;
    font-weight: 600;
    background: linear-gradient(90deg, #a2c7b7 0%, #6b98f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
}

.about-content h2 {
    font-size: 30px;
    font-weight: 500;
    color: #184c95;
}

.about-content h2 .text-primary {
    color: #032e69;
    font-weight: bold;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: hsl(var(--muted-foreground));
    font-size: 1.0625rem;
}

.credentials {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.credential-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: hsl(var(--muted) / 0.5);
    border-radius: var(--radius);
    min-width: 0;
}

.credential-card > div:last-child {
    flex: 1;
    min-width: 0;
}

.credential-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.primary-icon {
    background: hsl(var(--primary) / 0.1);
}

.primary-icon i {
    width: 20px;
    height: 20px;
    color: hsl(var(--primary));
}

.secondary-icon {
    background: hsl(var(--secondary) / 0.1);
}

.secondary-icon i {
    width: 20px;
    height: 20px;
    color: hsl(var(--secondary));
}

.credential-card h4 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.credential-card p {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.partner-logos {
    margin-top: 1.5rem;
}

.partner-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.logos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo-badge {
    flex: 0 0 auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 48px;
    width: auto;
    display: block;
}

.logo-img--large {
    max-height: 48px;
}

/* About Section - Mobile Small (até 480px) */
@media (max-width: 480px) {
    .about {
        padding: 2.5rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .about .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-grid {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.9375rem;
    }
}

/* About Section - Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .about {
        padding: 3rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .about .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-grid {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }
}

/* About Section - Mobile (até 768px) - Additional styles */
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
        overflow-x: hidden;
    }

    .about-grid {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        display: block;
    }

    .about-image .image-placeholder {
        padding: 0;
        border-radius: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        display: block;
    }

    .about-image .image-placeholder img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 1rem;
        box-sizing: border-box;
        margin: 0;
        object-fit: cover;
    }

    .about-content {
        order: 2;
    }

    .section-badge {
        font-size: 20px;
        margin-bottom: -20px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .credentials {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .credential-card {
        padding: 0.875rem;
        gap: 0.625rem;
        align-items: center;
    }

    .credential-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        min-width: 36px;
    }

    .primary-icon i,
    .secondary-icon i {
        width: 18px;
        height: 18px;
    }

    .credential-card h4 {
        font-size: 0.8125rem;
        margin-bottom: 0.125rem;
    }

    .credential-card p {
        font-size: 0.6875rem;
        line-height: 1.4;
    }

    .logos-grid {
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }
}

/* Media query específica para resolução 375px */
@media (min-width: 374px) and (max-width: 376px) {
    .about .about-grid .about-image .image-placeholder img {
        max-width: 89% !important;
        width: 88% !important;
    }
}

/* Media query específica para resolução 360px (360x740) */
@media (min-width: 350px) and (max-width: 380px) {
    .about .about-grid .about-image {
        max-width: 96% !important;
        width: 100% !important;
    }
    
    .about .about-grid .about-image .image-placeholder {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about .about-grid .about-image .image-placeholder img {
        max-width: 95% !important;
        width: 100% !important;
    }
}

/* Media query específica para resolução 390px (390x844) */
@media (min-width: 381px) and (max-width: 390px) {
    .about .about-grid .about-image {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about .about-grid .about-image .image-placeholder {
        max-width: 97% !important;
        width: 100% !important;
    }
    
    .about .about-grid .about-image .image-placeholder img {
        max-width: 91% !important;
        width: 91% !important;
    }
}

/* Media query específica para resolução 412px (412x915) */
@media (min-width: 391px) and (max-width: 412px) {
    .about-image {
        max-width: 95% !important;
        width: 95% !important;
    }
    
    .about-image .image-placeholder {
        max-width: 95% !important;
        width: 95% !important;
    }
    
    .about-image .image-placeholder img {
        max-width: 95% !important;
        width: 95% !important;
    }
}

/* Media query específica para resolução 414px */
@media (min-width: 413px) and (max-width: 414px) {
    .about .about-grid .about-image {
        max-width: 94% !important;
        width: 94% !important;
    }
    
    .about .about-grid .about-image .image-placeholder {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about .about-grid .about-image .image-placeholder img {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Media query específica para resolução 430px (430x932) */
@media (max-width: 430px) {
    .about-image {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about-image .image-placeholder {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .about-image .image-placeholder img {
        max-width: 98% !important;
        width: 100% !important;
    }
}

/* Media query específica para resolução 434px */
@media (min-width: 431px) and (max-width: 434px) {
    .about .container {
        padding: 0 1rem !important;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .about-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

/* Media query para resoluções entre 430px e 480px */
@media (min-width: 431px) and (max-width: 480px) {
    .about .container {
        padding: 0 1rem !important;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .about-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .about-image .image-placeholder {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .about-image .image-placeholder img {
        width: 100%;
        max-width: 86% !important;
        box-sizing: border-box;
        margin: 0;
    }
}

/* Media query para celulares menores (iPhone SE, Galaxy S8+, etc.) */
@media (max-width: 480px) {
    .about {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .about .container {
        padding: 0 1rem !important;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .about-grid {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .about-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        display: block;
    }

    .about-image .image-placeholder {
        padding: 0;
        border-radius: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        display: block;
    }

    .about-image .image-placeholder img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 0.75rem;
        box-sizing: border-box;
        margin: 0;
        object-fit: cover;
    }

    .about-content {
        order: 2;
        padding: 0;
    }

    .section-badge {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .about-text {
        font-size: 0.9375rem;
    }

    .credential-card {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .credential-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .primary-icon i,
    .secondary-icon i {
        width: 16px;
        height: 16px;
    }

    .credential-card h4 {
        font-size: 0.75rem;
    }

    .credential-card p {
        font-size: 0.625rem;
    }

    .logo-img {
        max-height: 36px;
    }

    .logo-img--large {
        max-height: 40px;
    }
}

/* Media query para celulares muito pequenos (iPhone SE, etc.) - abaixo de 350px */
@media (max-width: 349px) {
    .about {
        padding: 1.5rem 0;
        overflow-x: hidden;
    }

    .about .container {
        padding: 0 1rem !important;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .about-grid {
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
}

/* Media query para resoluções abaixo de 350px */
@media (max-width: 349px) {
    .about-image .image-placeholder {
        border-radius: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .about-image .image-placeholder img {
        border-radius: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .section-badge {
        font-size: 16px;
    }

    .about-content h2 {
        font-size: 1.125rem;
    }

    .about-text {
        font-size: 0.875rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #8ac0f0;
    position: relative;
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    background-image: url('fundo-frase.jpg');
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #8ac0f0;
    opacity: 0.9;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-header h2 {
    background: linear-gradient(110deg, #7b7676, #ff4875);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .section-header h2 .text-primary {
    background: linear-gradient(110deg, #7b7676, #ff4875);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
    width: 100%;
    align-items: stretch;
}

.testimonial-card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    box-shadow: 0 20px 60px hsla(210, 50%, 40%, 0.15);
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    overflow: hidden;
}

.testimonial-card.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.testimonial-card.fade-in {
    animation: fadeInCard 0.5s ease forwards;
}

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

.testimonial-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.testimonial-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: hsl(var(--border));
}

.testimonial-header-left {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: hsl(var(--foreground));
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
}

.testimonial-header-icon span {
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.testimonial-content blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--foreground));
    margin: 0;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.testimonial-nav-btn {
    background: hsl(210deg 70% 55% / 65%);;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    color: hsl(var(--primary-foreground));
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background: hsl(210deg 70% 55% / 65%);
    transform: scale(1.1);
}

.testimonial-nav-btn i {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: stretch;
        height: 350px;
    }

    .testimonial-card {
        width: 100%;
        position: relative;
        height: 100%;
    }

    #testimonialCard2 {
        display: none !important;
    }
    
    .testimonials-wrapper {
        flex-direction: column;
        padding: 0 1rem;
        position: relative;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        height: 350px;
        overflow: hidden;
    }

    .testimonial-header {
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .testimonial-content blockquote {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .author-name {
        font-size: 0.9375rem;
    }

    .testimonial-header-icon {
        width: 28px;
        height: 28px;
        margin-left: 0.75rem;
    }

    .testimonial-header-icon span {
        font-size: 0.6875rem;
    }
    
    .testimonial-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        z-index: 10;
        left: 94%;
    }

    .testimonial-nav-btn i {
        width: 20px;
        height: 20px;
    }
    
    .nav-btn-left {
        left: -7px;
    }
    
    .nav-btn-right {
        right: 0;
    }

    .hero-image .image-placeholder,
    .more-info-image .image-placeholder {
        border-radius: 1.5rem;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    
    .about-image .image-placeholder {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-image .image-placeholder img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0;
        object-fit: contain;
        box-sizing: border-box;
    }

    /* More Info Section Mobile Adjustments */
    .more-info {
        padding: 3rem 0 !important;
    }

    .more-info-content h2{
        width: auto;
    margin-left: auto;
    margin-right: auto;
    }
    .more-info-grid {
        gap: 1.5rem;
        display: grid;
        grid-template-columns: 1fr;
    }

    .more-info-content {
        display: contents;
    }

    .more-info-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0;
        order: 1;
    }

    .more-info-image {
        order: 2;
        margin-bottom: 0;
    }

    .more-info-intro {
        order: 3;
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 89%;
        margin-left: auto;
        margin-right: auto;
    }

    .info-accordion {
        order: 4;
        gap: 0.625rem;
        margin-left: 17px;
        max-width: 90%;
        margin-top: -25px;
    }

    .info-accordion-item {
        width: fit-content;
        min-width: 200px;
        max-width: 100%;
    }

    .info-accordion-header {
        padding: 10px 24px !important;
        min-height: 20px !important;
    }

    .info-item-title {
        font-size: 16px !important;
        letter-spacing: 1px !important;
        text-wrap: nowrap !important;
    }

    .info-icon-circle {
        width: 20px;
        height: 20px;
    }

    .info-icon-circle i {
        width: 12px;
        height: 12px;
    }

    /* Services Section Mobile Adjustments */
    .services {
        padding: 3rem 0;
    }

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

    .carousel-intro-text {
        font-size: 20px;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .carousel-cta-wrapper {
        margin-top: 1rem;
        display: flex !important; /* Força exibição no mobile */
    }

    .carousel-cta-button {
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
        display: inline-flex !important; /* Força exibição no mobile */
    }

    .section-header h2 {
        font-size: 1.5rem;
        text-align: start;
    }

    .section-header p {
        font-size: 1rem;
        text-align: start;
    }

    .service-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 1.5rem 0.75rem 1.25rem;
        margin: 0;
        min-width: 0;
    }

    .service-icon {
        width: 145px;
        height: 105px;
        margin-bottom: 1rem;
    }

    .service-icon svg,
    .service-icon img {
        width: 60px;
        height: 60px;
    }

    .service-card[data-service-title="Vícios e Autocontrole"] .service-icon img,
    .service-icon-vicios {
        width: 80px !important;
        height: 80px !important;
    }
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .carousel-track {
        gap: 1.5rem;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .carousel-wrapper {
        padding: 0 1rem;
    }

    .carousel-btn {
        display: flex;
        width: 25px;
        height: 25px;
        background: #124994;
        border: none;
        color: hsl(var(--primary-foreground));
        box-shadow: 0 4px 12px hsla(var(--primary), 0.3);
    }

    .carousel-btn i {
        width: 20px;
        height: 20px;
        color: #124994;
    }

    .blockquote span {
        text-transform: uppercase;
    }

    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }

    .logo-badge {
        flex: 1 1 0;
        justify-content: center;
    }

    .logo-img {
        max-height: 40px;
        width: auto;
        height: auto;
    }

    .logo-img--large {
        max-height: 45px;
        width: auto;
        height: auto;
    }

    #testimonialCard2 {
        display: none;
    }
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(var(--muted-foreground) / 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: hsl(var(--primary));
    width: 32px;
    border-radius: 4px;
}

/* Info Cards Section */
.info-cards {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.info-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: hsl(var(--muted) / 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.info-card:hover {
    background: hsl(var(--accent));
    box-shadow: 0 8px 30px hsla(210, 50%, 40%, 0.12);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: hsl(var(--secondary) / 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.info-card:hover .info-icon {
    background: hsl(var(--secondary) / 0.2);
}

.info-icon i {
    width: 28px;
    height: 28px;
    color: hsl(var(--secondary));
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.info-card p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* More Info Section */
.more-info {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.more-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.more-info-image {
    order: 2;
}

.more-info-image .image-placeholder {
    aspect-ratio: 4/5;
    border-radius: 1.5rem;
    overflow: hidden;
}

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

.more-info-content {
    order: 1;
}

.more-info-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    background: linear-gradient(90deg, #3e81b8, #c76b82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.more-info-content h2 .text-primary {
    background: linear-gradient(90deg, #3e81b8, #c76b82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.more-info-intro {
    font-size: 1.4rem;
    color: #0e3c7e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.more-info-intro strong {
    font-weight: bold;
}

.info-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
 
}

.btn-hero{
    width: 100%;

}
.info-accordion-item {
    background: linear-gradient(90deg, #d4feec, #85aefe);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: inline-block;
    width: fit-content;
    min-width: 200px;
}

.info-accordion-item:hover {
    background: linear-gradient(90deg, #c0f5e0, #7298f0);
    box-shadow: 0 4px 15px hsla(210, 50%, 40%, 0.1);
}

.info-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
    min-height: 48px;
}

.info-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.info-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #032e69;
    letter-spacing: 2px;
}

.info-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.info-icon-circle i {
    width: 14px;
    height: 14px;
    color: hsl(var(--foreground));
    font-weight: bold;
}

.info-accordion-icon {
    display: none;
}

@media (min-width: 1024px) {
    .more-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .more-info-image {
        order: 1;
    }
    
    .more-info-content {
        order: 2;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #5ba0c5;
    color: hsl(var(--primary-foreground));
    position: relative;
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    background-image: url('fundo-frase.jpg');
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #5896cc;
    z-index: 0;
    opacity: 0.9;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq .section-header h2,
.faq .section-header p {
    color: hsl(var(--primary-foreground));
}

.faq .section-header h2 {
    font-weight: 400;
    font-size: 30px;
}

.faq .section-header h2 .text-secondary {
    color: hsl(var(--primary-foreground));
    font-weight: bold;
}

.faq .section-header p {
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    line-height: 23px;
}

.faq .section-header p .highlight-text {
    font-style: italic;
    font-weight: bold;
}

.accordion {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: linear-gradient(161deg, #488e98, #1a43ad);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    padding: 10px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: hsl(var(--primary-foreground));
}

.accordion-header h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02rem;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding-top: 1rem;
    line-height: 1.6;
    color: hsla(var(--primary-foreground), 0.9);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--muted) / 0.3));
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accent-icon {
    background: hsl(var(--accent) / 0.5);
}

.accent-icon i {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary));
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: hsl(var(--primary));
}

.contact-item p {
    color: hsl(var(--muted-foreground));
}

/* Contact Form */
.contact-form {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px hsla(210, 50%, 40%, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(var(--border));
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
}

.contact-form .btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: hsl(var(--foreground) / 0.05);
    border-top: 1px solid hsl(var(--border));
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: hsl(var(--primary));
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(var(--muted));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heart-small {
    width: 14px;
    height: 14px;
    color: hsl(var(--secondary));
    display: inline-block;
    vertical-align: middle;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: fadeIn 0.5s ease-out;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
}

.whatsapp-float-icon {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 30px hsla(210, 50%, 40%, 0.15);
    transform: translateY(150%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2000;
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

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

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

/* Responsive Design */
@media (min-width: 768px) {
    .logo-text {
        display: block;
    }

    .btn-agende-mobile {
        display: none !important;
    }

    .menu-toggle {
        display: none;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .carousel-track {
        gap: 1.5rem;
    }

    .service-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .carousel-btn {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
    }

    .about-image .image-placeholder {
        padding: 0;
        aspect-ratio: 4/5;
        overflow: hidden;
    }

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

    .credentials {
        grid-template-columns: 1fr 1fr;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quote-content blockquote {
        font-size: 19px;
    }
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .approach-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .service-card {
        flex: 0 0 calc(25% - 1.125rem);
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: hsla(210, 20%, 20%, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: hsl(var(--background));
    border-radius: var(--radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px hsla(210, 50%, 40%, 0.3);
    animation: slideUp 0.3s ease-out;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(var(--muted));
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 0;
}

.modal-body {
    padding: 0 2rem 2rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
    }
    .faq .section-header h2{
        text-align: inherit;
    }
    .faq{
        padding: 3rem 0 !important;
    }
    
    .modal-title {
        font-size: 1.5rem;
        padding: 1.5rem 1.5rem 0;
    }
    
    .modal-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
}

/* ========================================
   BREAKPOINTS INTERMEDIÁRIOS - TABLETS E TELAS MÉDIAS
   ======================================== */

/* Tablet Small (769px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .nav-desktop button {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1.25rem;
    }

    .carousel-intro-text {
        font-size: 1.75rem;
    }
    
    .testimonials-container {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        height: 350px;
    }
    
    .contact-grid {
        gap: 2rem;
    }
}

/* Tablet Medium (901px - 1023px) */
@media (min-width: 901px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .testimonials-container {
        gap: 1.25rem;
    }
}

/* Desktop Small (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .service-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* ========================================
   AJUSTES GLOBAIS PARA MOBILE PEQUENO
   ======================================== */

@media (max-width: 480px) {
    /* Espaçamentos globais reduzidos */
    section {
        padding: 2.5rem 0;
    }
    
    /* Títulos ajustados */
    h2 {
        font-size: 1.5rem;
    }
    
    /* Seção Header mobile pequeno */
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    /* Services mobile pequeno */
    .services {
        padding: 2.5rem 0;
    }
    
    .service-card {
        padding: 1.25rem 0.5rem 1rem;
    }
    
    .service-icon {
        width: 120px;
        height: 90px;
    }
    
    .service-card h3 {
        font-size: 0.9375rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
    }
    
    /* About mobile pequeno */
    .about {
        padding: 2.5rem 0;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.9375rem;
    }
    
    .section-badge {
        font-size: 18px;
    }
    
    /* Testimonials mobile pequeno */
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .testimonials-container {
        height: 300px;
    }
    
    .testimonial-card {
        height: 300px;
        padding: 1.25rem;
    }
    
    /* Contact mobile pequeno */
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* WhatsApp Float mobile pequeno */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Toast mobile pequeno */
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        padding: 0.875rem 1rem;
    }
}

/* ========================================
   AJUSTES PARA TABLETS (769px - 1023px)
   ======================================== */

@media (min-width: 769px) and (max-width: 1023px) {
    /* Header tablet */
    .header-content {
        gap: 1.5rem;
    }
    
    .nav-desktop {
        gap: 1rem;
    }
    
    .nav-desktop button {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    /* Hero tablet */
    .hero {
        padding: 5.5rem 0 4rem;
    }
    
    .hero-grid {
        gap: 2.5rem;
    }
    
    /* Services tablet */
    .service-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 1.75rem 1.25rem 1.5rem;
    }
    
    /* About tablet */
    .about-grid {
        gap: 2.5rem;
    }
    
    /* Testimonials tablet */
    .testimonials-container {
        gap: 1.25rem;
    }
    
    .testimonial-card {
        height: 380px;
        padding: 1.75rem;
    }
    
    /* Contact tablet */
    .contact-grid {
        gap: 2.5rem;
    }
    
    /* Footer tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ========================================
   MELHORIAS DE LARGURA E OVERFLOW
   ======================================== */

/* Garantir que todas as seções respeitem a largura */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Garantir que todos os grids sejam responsivos */
.grid,
[class*="grid"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Garantir que todas as imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 480px) {
    .hero-buttons{
        align-items: start;
    }
    .btn-outline{
        width: auto;
        text-wrap: nowrap;
    }
}
@media (max-width: 768px) {
    .hero-content{
        margin-top: 10px;
    }
}
@media (max-width: 390px) {
    .hero-title{
        font-size: 30px !important;
        height: 206px !important;
    }
}