/* ===================================
   Caroline Fogaça - Nutricionista
   Styles CSS
   =================================== */

/* CSS Variables */
:root {

    /* Colors atualizadas com base na paleta da imagem */
--primary: 30 60% 40%;            /* marrom médio */
--secondary: 25 70% 85%;          /* bege claro */
--background: 0 0% 100%;          /* branco */
--muted: 120 10% 40%;             /* verde acinzentado */
--muted-foreground: 120 5% 35%;   /* verde acinzentado mais escuro */
--accent: 35 80% 50%;             /* laranja vibrante */
--border: 30 20% 80%;             /* marrom claro */
--cream: 40 60% 90%;              /* tom creme */
--sage-light: 140 30% 85%;        /* verde claro */


    /* Colors */
    --primary: 160 10% 20%;
    --primary-foreground: 0 0% 100%;
    --secondary: 34 52% 94%;
    --background: 0 0% 100%;
    --foreground: 160 10% 23%;
    --muted: 120 8% 46%;
    --muted-foreground: 120 5% 45%;
    --accent: 142 35% 52%;
    --border: 120 10% 90%;
    --cream: 42 40% 96%;
    --sage-light: 142 30% 92%;
    
    /* Fonts */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1280px;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition: 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: hsl(var(--foreground));
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.text-gradient {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section */
.section {
    padding: var(--section-padding);
}

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

.section-header p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-top: 1rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg {
    width: 1.125rem;
    height: 1.125rem;
}

.btn-hero {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 8px 24px hsla(var(--primary), 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px hsla(var(--primary), 0.4);
}

.btn-cta {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn-outline:hover {
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
}

.btn-subtle {
    background: transparent;
    color: hsl(var(--muted-foreground));
}

.btn-subtle:hover {
    color: hsl(var(--primary));
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(var(--background), 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary-foreground));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.logo-subtitle {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--muted-foreground));
}

.logo-image {
    max-width:125px;
}

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

.nav-desktop a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

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

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem var(--container-padding) 1.5rem;
    background: hsl(var(--background));
    border-top: 1px solid hsl(var(--border));
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    border-bottom: 1px solid hsl(var(--border));
}

.nav-mobile a.btn-cta {
    color: hsl(var(--primary-foreground)) !important;
}

.nav-mobile a:hover {
    color: hsl(var(--primary));
}

.nav-mobile .btn {
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-cta {
        display: inline-flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, hsl(var(--sage-light)) 0%, hsl(var(--background)) 100%);
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.highlight svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.highlight strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.highlight span {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* About Section */
.about {
    background: hsl(var(--cream));
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: hsl(var(--primary-foreground));
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-years {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.about-text .lead {
    font-size: 1.25rem;
    color: hsl(var(--foreground));
    margin: 1.5rem 0;
}

.about-text p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.value-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    background: hsl(var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }
    
    .experience-badge {
        bottom: 2rem;
        right: -2rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    background: linear-gradient(135deg, hsl(var(--sage-light)), hsl(var(--cream)));
    border-color: hsl(var(--primary) / 0.2);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background: hsl(var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.service-card.featured .service-icon svg {
    color: hsl(var(--primary-foreground));
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.75rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: hsl(var(--foreground));
}

.service-features li svg {
    width: 1rem;
    height: 1rem;
    color: hsl(var(--primary));
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .service-card.featured {
        grid-row: span 1;
    }
}

/* Specialties Section */
.specialties {
    background: hsl(var(--cream));
}

.specialties-grid {
    display: grid;
    gap: 1.5rem;
}

.specialty-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.specialty-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    background: hsl(var(--sage-light) / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    transform: scale(1.1);
}

.specialty-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon svg {
    color: hsl(var(--primary-foreground));
}

.specialty-card h3 {
    margin-bottom: 0.75rem;
}

.specialty-card p {
    color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-stars .star-filled {
    fill: #f59e0b;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: hsl(var(--foreground));
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-weight: 600;
}

.author-info strong {
    display: block;
    font-weight: 600;
}

.author-info span {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

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

/* Blog Section */
.blog {
    background: hsl(var(--cream));
}

.blog-grid {
    display: grid;
    gap: 2rem;
}

.blog-card {
    background: hsl(var(--background));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    background: hsl(var(--sage-light));
    overflow: hidden;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: hsl(var(--background));
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary));
    border-radius: var(--radius-sm);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.blog-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0 0.75rem;
}

.blog-content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: hsl(var(--primary));
}

.blog-link svg {
    width: 1rem;
    height: 1rem;
    transition: var(--transition);
}

.blog-link:hover svg {
    transform: translateX(4px);
}

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

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

/* Appointment Section */
.appointment {
    background: linear-gradient(135deg, hsl(var(--sage-light)), hsl(var(--cream)));
}

.appointment-content {
    display: grid;
    gap: 3rem;
}

.appointment-info h2 {
    margin-bottom: 1rem;
}

.appointment-info > p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.appointment-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.benefit-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.contact-quick p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.75rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #25D366;
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: #20BD5C;
}

.appointment-form {
    background: hsl(var(--background));
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-md);
    background: hsl(var(--background));
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-group textarea {
    resize: vertical;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .appointment-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: center;
    }
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border));
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
    transition: var(--transition);
}

.faq-question:hover {
    color: hsl(var(--primary));
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: hsl(var(--cream));
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

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

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: hsl(var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(var(--sage-light));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: hsl(var(--primary));
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary));
    transition: var(--transition);
}

.social-link:hover svg {
    color: hsl(var(--primary-foreground));
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: hsl(var(--sage-light));
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: hsl(var(--muted-foreground));
}

.map-placeholder svg {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--primary));
}

.map-placeholder small {
    font-size: 0.75rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

/* Footer */
.footer {
    background: hsl(var(--foreground));
    color: hsl(var(--primary-foreground));
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

.footer-about {
    max-width: 400px;
}

.footer .logo {
    margin-bottom: 1.5rem;
}

.footer .logo-name,
.footer .logo-subtitle {
    color: hsl(var(--primary-foreground));
}

.footer .logo-subtitle {
    opacity: 0.6;
}

.footer-about > p {
    color: hsl(var(--primary-foreground) / 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary-foreground));
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: hsl(var(--primary-foreground) / 0.7);
}

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

.footer-contact li {
    color: hsl(var(--primary-foreground) / 0.7);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.6);
}

.scroll-top {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(var(--primary));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.scroll-top:hover {
    background: hsl(var(--primary) / 0.8);
}

.scroll-top svg {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--primary-foreground));
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Utility */
@media (max-width: 1023px) {
    :root {
        --section-padding: 4rem 0;
    }
}

/* Base da caixa de alerta */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

/* Alerta de erro */
.alert-danger {
    background-color: #ffe5e5;
    border: 1px solid #ff4d4d;
    color: #b30000;
}

/* Alerta de sucesso */
.alert-success {
    background-color: #e6ffed;
    border: 1px solid #28a745;
    color: #155724;
}

/* Lista de erros */
.alert ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    list-style-type: disc;
}

/* Animação suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ícones opcionais */
.alert::before {
    content: "⚠️ Alerta";
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    font-size: 1.2rem;
}

.alert-success::before {
    content: "✅ Alerta de Sucesso";
    color: #28a745;
}

.alert-danger::before {
    content: "❌ Alerta Crítico";
    color: #ff4d4d;
}

.alert ul {
    list-style: none;   /* remove os bullets */
    margin: 0;          /* remove margem padrão */
    padding: 0;         /* remove padding padrão */
    margin-top:30px;
}

.alert ul li {
    margin: 0.25rem 0;  /* espaço entre os itens */
}
