/* =========================================================
   1. VARIÁVEIS E CONFIGURAÇÕES GLOBAIS
========================================================== */
:root {
    --primary-color: #1f4d35;      /* Verde forte principal */
    --primary-dark: #123322;       /* Verde escuro para hovers e fundos */
    --primary-light: #e8f0ec;      /* Verde bem claro para seções de destaque */
    --accent-color: #d4af37;       /* Dourado suave/elegante para detalhes */
    --text-dark: #2c3e35;          /* Texto principal escuro */
    --text-muted: #66786d;         /* Texto secundário/cinza esverdeado */
    --bg-white: #ffffff;           /* Branco puro */
    --bg-light: #f4f7f5;           /* Fundo off-white */
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 10px 30px rgba(31, 77, 53, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.id-padding {
    padding: 90px 0;
}

.section-light {
    background-color: var(--bg-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-2-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =========================================================
   2. BOTÕES E COMPONENTES COMUNS
========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(31, 77, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.btn-dark:hover {
    background-color: var(--primary-color);
}

.section-title-area, .section-title-center {
    margin-bottom: 40px;
}

.section-title-center {
    text-align: center;
}

.section-tagline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* =========================================================
   3. CABEÇALHO / MENU
========================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo-text small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-btn-contact {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.nav-btn-contact:hover {
    background-color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* =========================================================
   4. HERO SECTION
========================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('img/sitiofidelis.svg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 51, 34, 0.6), rgba(18, 51, 34, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #e2e8e4;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--bg-white);
    font-size: 1.2rem;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* =========================================================
   5. DESTAQUES RÁPIDOS
========================================================== */
.quick-highlights {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 40px 20px;
    position: relative;
    z-index: 3;
    margin-top: -40px;
    border-radius: var(--border-radius);
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--box-shadow);
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-info h3 {
    font-size: 1rem;
    color: var(--bg-white);
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.highlight-info p {
    font-size: 0.85rem;
    color: #cbd5d0;
}

/* =========================================================
   6. SOBRE O SÍTIO
========================================================== */
.about-images-wrapper {
    position: relative;
    height: 480px;
}

.about-img-big {
    width: 80%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-img-big img, .about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 240px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 6px solid var(--bg-white);
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-number {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-text {
    font-size: 0.95rem;
}

.about-text-content .text-highlight {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-text-content .general-text {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-features-list {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-list-item i {
    color: var(--primary-color);
}

/* =========================================================
   7. ESTRUTURA
========================================================== */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.structure-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.structure-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 220px;
    overflow: hidden;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.card-amenities {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.card-amenities li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-amenities li i {
    color: var(--accent-color);
}

/* =========================================================
   8. SERVIÇOS
========================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-box {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-box:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.service-box:hover .service-icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
}

.service-box:hover h3, .service-box:hover p {
    color: var(--bg-white);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* =========================================================
   9. LOCALIZAÇÃO
========================================================== */
.location-highlight-section {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 20px;
}

.location-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-text-side h2 {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.location-text-side > p {
    color: #cbd5d0;
    margin-bottom: 30px;
}

.distance-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 15px;
}

.timeline-marker {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--bg-white);
    font-size: 1.05rem;
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.88rem;
    color: #b5c4bc;
}

.location-image-side {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.location-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   10. GALERIA
========================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--bg-white);
    border: 1px solid #ddd;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 260px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 77, 53, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--bg-white);
    font-weight: 600;
}

.gallery-item:hover .gallery-item-hover {
    opacity: 1;
}

/* =========================================================
   11. DEPOIMENTOS
========================================================== */
.testimonials-slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-rating {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.user-details span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =========================================================
   12. FAQ
========================================================== */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* =========================================================
   13. CONTATO
========================================================== */
.contact-section {
    background-color: var(--bg-white);
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 2px;
}

.method-details p, .contact-link {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-medias-connect h4 {
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.contact-form-panel {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-panel > p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(31, 77, 53, 0.1);
}

.btn-form-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-form-submit:hover {
    background-color: var(--primary-dark);
}

/* =========================================================
   14. RODAPÉ
========================================================== */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 70px 0 30px;
}

.footer-top-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-column h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand-column p {
    color: #b5c4bc;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-column h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-column a {
    color: #b5c4bc;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ab0a3;
    font-size: 0.85rem;
}

.developer-credit a {
    color: var(--accent-color);
    font-weight: 600;
}

/* =========================================================
   15. BOTÃO FLUTUANTE WHATSAPP
========================================================== */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

.tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-floating-btn:hover .tooltip-text {
    opacity: 1;
}

/* =========================================================
   16. RESPONSIVIDADE (MOBILE)
========================================================== */
@media (max-width: 992px) {
    .grid-2, .location-banner-container, .footer-top-container {
        grid-template-columns: 1fr;
    }
    
    .highlights-container, .structure-grid, .services-grid, .gallery-grid, .testimonials-slider-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .quick-highlights {
        margin-top: 0;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .highlights-container, .structure-grid, .services-grid, .gallery-grid, .testimonials-slider-container, .grid-2-simple {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}