/* ==========================================
   D'CASA - Design System (Cookies & Coffee)
   ========================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   CSS Variables - Paleta Boutique
   ========================================== */
:root {
    /* Cores Principais */
    --sage-green: #B7C4C1;
    --sage-dark: #9AA9A5;
    --sage-light: #D4DEDB;

    --coffee-brown: #3E2723;
    --coffee-light: #5D4037;

    --charcoal: #4D4D4D;
    --charcoal-light: #666666;

    --off-white: #E9EBEA;
    --white: #FFFFFF;

    /* Acentos e Auxiliares */
    --accent-gold: #D4A574;
    --shadow-color: rgba(62, 39, 35, 0.1);
    --shadow-strong: rgba(62, 39, 35, 0.2);

    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Dancing Script', cursive;

    /* Tamanhos e Espaçamentos (Reutilizados da Donutopia) */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    --space-1: 0.25rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-24: 6rem;

    --radius-full: 9999px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-base: 300ms ease;
}

/* ==========================================
   Base Styles
   ========================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--coffee-brown);
}

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

/* ==========================================
   Utilities
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.highlight {
    color: var(--sage-dark);
    font-style: italic;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.btn-primary {
    background: var(--coffee-brown);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--coffee-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-strong);
}

.btn-secondary {
    background: var(--sage-green);
    color: var(--coffee-brown);
}

.btn-secondary:hover {
    background: var(--sage-dark);
}

.btn-white {
    background: var(--white);
    color: var(--coffee-brown);
}

.btn-header {
    padding: 8px 16px;
    font-size: var(--text-sm);
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 var(--space-8);
}

.logo img {
    height: 60px;
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--coffee-brown);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--sage-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    padding: 10px 24px;
    font-size: var(--text-sm);
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.15);
}

.btn-header:hover {
    box-shadow: 0 6px 20px rgba(62, 39, 35, 0.25);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--coffee-brown);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   Hero Section - Full Width Background
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('media/chocolate.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-12) 0;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--white);
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--white);
    margin-bottom: 56px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.btn-large {
    padding: 18px 48px;
    font-size: var(--text-xl);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==========================================
   About Section
   ========================================== */
.section-about {
    padding: var(--space-24) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* ==========================================
   Gallery/Carousel Section
   ========================================== */
.section-gallery {
    padding: var(--space-24) 0;
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y pinch-zoom;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 32px 24px 24px;
    font-size: var(--text-2xl);
    font-family: var(--font-display);
    font-weight: 700;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--coffee-brown);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sage-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--coffee-brown);
    transform: scale(1.2);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   FAQ Section
   ========================================== */
.section-faq {
    background: var(--white);
    padding: var(--space-24) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6);
    cursor: pointer;
}

.faq-item h3 {
    font-size: var(--text-lg);
    margin: 0;
}

.faq-icon {
    font-size: var(--text-2xl);
    color: var(--sage-green);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-6) var(--space-6);
}

/* ==========================================
   Menu/Cardápio
   ========================================== */
.section-menu {
    padding: var(--space-24) 0;
    background: var(--off-white);
}

.menu-type-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.type-btn {
    padding: 10px 20px;
    border: 1px solid var(--sage-green);
    background: transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-base);
}

.type-btn.active {
    background: var(--sage-green);
    color: var(--coffee-brown);
}

.menu-grid {
    display: grid;
    gap: 32px;
}

.menu-items-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.menu-item-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px var(--shadow-color);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--off-white);
    cursor: pointer;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: bold;
}

/* ==========================================
   Checkout Modal & Floating Cart
   ========================================== */
.floating-cart {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coffee-brown);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 90%;
    max-width: 400px;
    z-index: 900;
    box-shadow: 0 8px 24px var(--shadow-strong);
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.cart-count {
    font-size: var(--text-xs);
    opacity: 0.9;
}

.cart-total {
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--sage-green);
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--text-sm);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--off-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: var(--text-2xl);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--sage-dark);
    font-weight: 500;
    cursor: pointer;
    font-size: var(--text-sm);
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--coffee-brown);
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--charcoal-light);
    line-height: 1;
}

.close-btn:hover {
    color: var(--coffee-brown);
}

.modal-body {
    padding: 24px;
}

.cart-preview {
    background: var(--off-white);
    padding: 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: var(--text-sm);
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--sage-light);
}

.cart-item-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-summary-row,
.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 16px;
    padding-top: 8px;
}

.cart-total-row {
    font-size: var(--text-xl);
    color: var(--coffee-brown);
    border-top: 2px solid var(--off-white);
    padding-top: 16px;
    margin-top: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--coffee-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
}

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--sage-light);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    background: var(--white);
    transition: all var(--transition-base);
}

.radio-label input[type="radio"]:checked {
    border-color: var(--coffee-brown);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--coffee-brown);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-wrapper {
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--sage-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--white);
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--coffee-brown);
    border-color: var(--coffee-brown);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label:hover input[type="checkbox"] {
    border-color: var(--sage-green);
}

.text-muted {
    color: var(--charcoal-light);
    font-size: var(--text-xs);
    margin-top: 4px;
    display: block;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid var(--off-white);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Toast Notifications
   ========================================== */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    width: 90vw;
    max-width: 450px;
    align-items: center;
}

.toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    color: var(--coffee-brown);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--sage-green);
    font-weight: 600;
    font-size: var(--text-sm);
    animation: toast-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
        toast-out 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) 2.5s forwards;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid var(--coffee-brown);
    width: 100%;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--coffee-brown);
    color: var(--off-white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(233, 235, 234, 0.1);
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--sage-light);
    font-size: var(--text-sm);
}

.footer h4 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: var(--sage-light);
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

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

.footer-location p {
    color: var(--sage-light);
    font-size: var(--text-sm);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--sage-light);
}

.footer-bottom a {
    color: var(--sage-green);
    text-decoration: underline;
}

.footer-tagline {
    margin-top: 8px;
    font-size: var(--text-xs) !important;
}

.hidden {
    display: none !important;
}

/* ==========================================
   Section Utilities
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: 16px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-item-name {
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--coffee-brown);
}

.menu-item-price {
    font-weight: 700;
    color: var(--sage-dark);
}

.menu-item-description {
    font-size: var(--text-sm);
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.menu-item-actions {
    display: flex;
    justify-content: flex-end;
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    color: var(--coffee-brown);
}

/* ==========================================
   Contact & Location Section
   ========================================== */
.section-contact {
    background: var(--off-white);
    padding: var(--space-24) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: var(--text-base);
    margin: 0 0 8px 0;
    color: var(--coffee-brown);
    font-weight: 700;
}

.contact-card-content p {
    font-size: var(--text-sm);
    color: var(--charcoal-light);
    line-height: 1.5;
    margin: 0;
}

.contact-card a {
    color: var(--sage-dark);
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-card a:hover {
    color: var(--coffee-brown);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================
   Responsividade
   ========================================== */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-large {
        width: 100%;
        padding: 14px 32px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

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

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-map {
        min-height: 300px;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-link {
        font-size: var(--text-lg);
        padding: 12px 0;
    }

    .btn-header {
        display: none;
    }

    .hero-text {
        padding: 32px 24px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-caption {
        font-size: var(--text-xl);
        padding: 24px 16px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul,
    .footer-contact ul {
        align-items: center;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================
   Mobile Menu Hamburger
   ========================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--coffee-brown);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all var(--transition-base);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-link {
        font-size: var(--text-lg);
        padding: 12px 0;
    }

    .hero-text {
        padding: 32px 24px;
    }

    .btn-header {
        display: none;
    }
}