:root {
    --bg-primary: #E8DCC5;
    --bg-light: #FFFFFF;
    --color-accent: #CFB28A;
    --color-text: #956937;
    --color-text-light: #FDFBF7;
    --color-dark: #5D4037; /* Um marrom mais escuro para contraste se necessário */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
.header {
    background-color: var(--bg-primary);
    box-shadow: none; /* Shadow aplicado via JS apenas no scroll */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 110px; 
    display: flex;
    align-items: center;
    transition: all 0.4s ease; /* Transição suave */
}

.header.scrolled {
    background-color: rgba(232, 220, 197, 0.85); /* Fundo semi-transparente */
    backdrop-filter: blur(10px); /* Efeito Blur */
    -webkit-backdrop-filter: blur(10px); /* Compatibilidade Safari */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Sombra suave */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo img {
    height: 80px; /* Logo maior */
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu i {
    margin-right: 0.4rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-agendar {
    background-color: var(--color-text);
    color: var(--bg-light) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(149, 105, 55, 0.3);
    border: 1px solid transparent;
}

.btn-agendar:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(149, 105, 55, 0.4);
}

.btn-agendar::after {
    display: none;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px; /* Compensar header fixo */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Imagem de fundo de consultório médico moderno com sobreposição clara para leitura */
    background-image: linear-gradient(rgba(253, 251, 247, 0.92), rgba(232, 220, 197, 0.85)), url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?q=80&w=2091&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* Efeito sutil de textura */
    box-shadow: inset 0 0 100px rgba(255,255,255,0.5);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centralizar horizontalmente */
    text-align: center; /* Centralizar texto */
}

.hero-content {
    max-width: 900px; /* Aumentar largura máxima para caber centralizado */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizar itens flexíveis */
    animation: fadeInUp 1s ease forwards; /* Alterado para vir de baixo */
}

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-accent);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.hero h1 span {
    color: var(--color-accent);
    display: inline-block; /* Mudar para inline-block para fluir melhor centralizado */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    max-width: 700px; /* Aumentar largura do parágrafo */
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap; /* Forçar mesma linha no desktop */
    justify-content: center; /* Centralizar features */
    width: 100%;
}

/* Responsividade para features em telas menores */
@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap; /* Permitir quebra em mobile */
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    white-space: nowrap; /* Evitar quebra de texto dentro do item */
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
    background: rgba(232, 220, 197, 0.4);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Centralizar botões */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-hero-primary {
    background-color: var(--color-text);
    color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(149, 105, 55, 0.3);
}

.btn-hero-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149, 105, 55, 0.4);
}

.btn-hero-outline {
    border: 2px solid var(--color-text);
    color: var(--color-text);
}

.btn-hero-outline:hover {
    background-color: var(--color-text);
    color: var(--bg-light);
    transform: translateY(-3px);
}

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

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(149, 105, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(149, 105, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(149, 105, 55, 0);
    }
}

/* Sections General */
.section {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header p {
    color: #888;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--color-accent);
    margin: 1.5rem auto 0;
    border-radius: 3px;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--bg-light);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

/* Sobre Mim */
.sobre {
    background-color: var(--bg-light);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h3 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.sobre-list {
    margin-top: 2rem;
}

.sobre-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--color-dark);
}

.sobre-list i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.sobre-image-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(232, 220, 197, 0.6);
}

.sobre-img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .sobre-img {
    transform: scale(1.05);
}

.floating-icon {
    position: absolute;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--color-accent);
    font-size: 1.5rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: -15px;
    right: 20px;
    animation-delay: 2.5s;
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Ajuste Mobile para Ícones Flutuantes */
@media (max-width: 768px) {
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .icon-1 { top: -10px; right: -10px; }
    .icon-2 { bottom: 20px; left: -10px; }
    .icon-3 { bottom: -10px; right: 10px; }
}

/* Especialidades (Cards) */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(207, 178, 138, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #956937);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(232, 220, 197, 0.3), rgba(207, 178, 138, 0.1));
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(207, 178, 138, 0.2);
}

.card:hover .card-icon {
    background-color: var(--color-accent);
    color: var(--bg-light);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(207, 178, 138, 0.4);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.depoimentos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23956937' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.depoimentos-container {
    position: relative;
    z-index: 1;
    max-width: 1400px; /* Aumentar largura máxima para ocupar mais espaço */
    padding: 0 1rem;
}

.testimonials-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
    flex: 1;
    padding: 1rem 3rem 2rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 2rem;
    padding: 0 1rem; /* Espaço extra para não cortar sombra */
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 0 0 100%;
    min-width: 0; /* Previne overflow */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(232, 220, 197, 0.5);
    transition: transform 0.3s ease;
    height: auto; /* Altura automática */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #888;
}

/* Slider Controls */
.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(149, 105, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--color-text);
    transform: scale(1.2);
}

@media (min-width: 640px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 4rem) / 3);
    }
}


/* Contato */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.info-item i {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-top: 0.3rem;
}

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

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

.social-links a:hover {
    background-color: var(--color-accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-form-modern .form-group {
    position: relative;
}

.contact-form-modern .input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 1rem;
    pointer-events: none;
}

.contact-form-modern .textarea-icon {
    top: 18px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 2.8rem;
    border: 1px solid rgba(207, 178, 138, 0.35);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-text) 50%), linear-gradient(135deg, var(--color-text) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(149, 105, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background-color: var(--color-text);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-block:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start; /* Alinha logo e textos à esquerda */
}

.footer-logo-img {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* filter: brightness(0) invert(1); removido para manter cores originais */
    opacity: 1;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: 0;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-links-group h4 {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: #ccc;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav a i {
    font-size: 0.7rem;
    color: var(--color-accent);
    opacity: 0.7;
}

.footer-nav a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ccc;
}

.contact-item i {
    color: var(--color-accent);
    margin-top: 0.3rem;
}

.footer-btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-accent);
    color: var(--bg-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
    align-self: flex-start;
}

.footer-btn-agendar:hover {
    background-color: #fff;
    color: var(--color-text);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.footer-dev {
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-dev:hover {
    color: var(--color-accent);
}

/* Responsividade Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid rgba(207, 178, 138, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    width: 100%;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    list-style: none; /* Remove default marker standard */
    position: relative;
    font-size: 1.1rem;
    gap: 1rem;
    user-select: none;
    outline: none;
}

/* Remove default marker specifically for Webkit/Chrome/Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Remove default marker specifically for Firefox/Others */
.faq-item summary::marker {
    display: none;
    content: "";
}

.faq-question-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-icon {
    color: var(--color-accent);
    font-size: 1.3rem;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle {
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-size: 0.9rem;
    opacity: 0.7;
}

details[open] .faq-toggle {
    transform: rotate(180deg);
    opacity: 1;
}

details[open] summary {
    background-color: rgba(232, 220, 197, 0.1);
    color: var(--color-text);
    border-bottom: 1px solid rgba(207, 178, 138, 0.1);
}

.faq-content {
    padding: 1.5rem;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

/* Botão Flutuante do WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    background-color: #20ba5a;
}

.fab-whatsapp .tooltip {
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.fab-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Responsividade */
@media (min-width: 768px) {
    .header-container {
        padding: 0 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: block;
    }

    .hero-content {
        max-width: 600px;
    }

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

    .sobre-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        flex-direction: row;
    }

    .contact-info, .contact-form {
        flex: 1;
    }

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

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

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

@media (max-width: 768px) {
    .header {
        height: 80px;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sobre-image-container {
        order: -1; /* Imagem acima no mobile */
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
    
    .testimonials-track-container {
        padding: 1rem 0 2rem;
    }
}
