/*
 * RL CLEANING - CSS baseado 100% no Figma
 * Autor: Claude
 * Data: 2025-12-11
 */

/* 
   RESET BÁSICO
    */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #011B40;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* 
   VARIÁVEIS CSS - DIRETO DO FIGMA
    */
:root {
    /* Cores */
    --accent-1: #2FA2D4;
    --accent-2: #452E81;
    --background-1: #FFFFFF;
    --background-2: #FFFFFF;
    --text-paragraph: #011B40;
    --text-heading: #452E81;
    --divider: #BA9787;

    /* Gradiente Linear */
    --gradient-linear: linear-gradient(135deg, rgba(11, 39, 73, 1) 0%, rgba(69, 46, 129, 1) 53%, rgba(11, 39, 73, 1) 100%);

    /* Fontes */
    --font-spartan: 'League Spartan', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

/* 
   TIPOGRAFIA - CONFORME FIGMA
    */

/* H2 - League Spartan 64px */
h2 {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 64px;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: var(--text-heading);
}

/* Headline 1 - League Spartan 40px */
h3 {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    color: var(--accent-2);
}

/* P1 - Montserrat 14px */
p {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35em;
    letter-spacing: -0.02em;
    color: var(--text-paragraph);
}

/* Link Button - League Spartan 16px */
.btn-primarya a,
.link-button {
    font-family: var(--font-spartan);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 30px;
    background: var(--accent-1);
    color: var(--background-1);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primarya{
    background: var(--accent-1);
    color: var(--background-1);
    border: none;
}
.btn-primary:hover,
.btn-primary a:hover,
.btn-primarya:hover,
.btn-primarya a:hover,
.btn-outline:hover,
.link-button:hover {
    background: var(--accent-2);
    transform: scale(1.05);
}

/* 
   HEADER
    */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    z-index: 999;
    background: var(--gradient-linear);
    padding: 0;
}

.header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 64px;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1152px;
    gap: 16px;
}

.logo {
    width: 64.24px;
    height: 64.24px;
    flex-shrink: 0;
}

.logo img {
    width: 64.24px;
    height: 64.24px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.45em;
    letter-spacing: -0.005em;
    color: var(--background-1);
    text-decoration: none;
    transition: font-weight 0.2s;
}

.nav-menu a:hover {
    font-weight: 700;
}

/*
   FOOTER - CONFORME FIGMA (47:473)
    */
footer {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Container (47:474) */
.footer-container {
    max-width: 1152px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 80px 0;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Content (47:475) - gap 100px column */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Frame 2147236517 (47:476) - gap 20px column, centered */
.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Logo (47:477) - 284.16 x 284.16px */
.footer-logo {
    width: 284.16px;
    height: 284.16px;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 166.15px;
}

/* Buttons (47:478) - 158.53px width, gap 12.31px, wrap */
.footer-social-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12.31px;
    width: 158.53px;
}

/* Social Icons - 44.63 x 44.63px */
.footer-social-icon {
    width: 44.63px;
    height: 44.63px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.footer-social-icon:hover {
    transform: scale(1.1);
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
}

/* Nav (47:488) - gap 40px row */
.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footerabout ul li{
    display: flex;
    align-items: center;
    font-family: 'Poppins';
    font-size: 12.6px;
    font-weight: 400;
    line-height: 190%; 
    gap: 3px;
    
    color: var(--accent-2);
}
.footerabout ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8.45px 0;
}
.footerabout ul h5{
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 600;
    line-height: 140%; 
}

/* Columns (47:489 and 47:501) - 161.62px width */
.footer-column {
    display: flex;
    flex-direction: column;
    width: 170px;
}

/* Links - Poppins 600, 14.789px, padding 8.45px */
.footer-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14.789px;
    line-height: 1.4;
    color: var(--accent-2);
    text-decoration: none;
    padding: 8.45px 0;
    display: block;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Hours container */
.footer-hours {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8.45px 0;
}

/* Hours text - Poppins 400, 12.676px */
.footer-hours-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12.676px;
    line-height: 1.9;
    color: var(--accent-2);
}

/* Frame 1262 (47:506) - 1105px width, padding 40px 8px, gap 8px */
.footer-bottom {
    width: 1105px;
    max-width: 100%;
    padding: 40px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Row (47:507) - space-between, gap 67.6px */
.footer-bottom-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 67.6px;
}

.footer-bottom p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14.789px;
    line-height: 1.5;
    color: var(--accent-2);
    margin: 0;
}

/* Footer Links (47:509) - gap 25.35px */
.footer-legal {
    display: flex;
    flex-direction: row;
    gap: 25.35px;
}

.footer-legal a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14.789px;
    line-height: 1.5;
    color: var(--accent-2);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-legal a:hover {
    opacity: 0.7;
}
/* 
   HERO SECTION - CONFORME FIGMA (47:120)
    */
.hero-section {
    min-height: calc(75vh - 70px);
    background-image: url('https://rlcleaningoh.com/wp-content/uploads/2025/12/hero-background-figma.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(69, 46, 129, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 50px 64px 80px;
    width: 100%;
    max-width: 1152px;
}

.hero-logo {
    width: 228px;
    height: 228px;
    border-radius: 166px;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 64px;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-align: center;
    max-width: 470px;
    margin: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-cta .btn-primary a{
    height: 41px;
}

.hero-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 158px;
}

.hero-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: color 0.2s, transform 0.2s;
}

.hero-social a:hover {
    color: var(--accent-1);
    transform: scale(1.1);
}

/* 
   SERVICES GRID
    */
.services-section {
    padding: 80px 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1152px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    justify-content: space-between;
    align-items: stretch;
    padding: 30px 0 40px;
    border-top: 0.5px solid var(--divider);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(47, 162, 212, 0.03);
}


.service-image img{
    width: 100%;
    height: 100%;
    max-width: 565px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 287px;
    justify-content: space-around;
}

.service-description{
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 433px;
}

.frequency-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.frequency-btn {
    font-family: var(--font-spartan);
    font-weight: 700;
    font-size: 16px;
    padding: 10px;
    background: transparent;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
    border-radius: 2px;
    cursor: default;
    transition: all 0.3s ease;
}

.frequency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 162, 212, 0.3);
}

.btn-outline {
    font-family: var(--font-spartan);
    font-weight: 700;
    font-size: 16px;
    padding: 10px 30px;
    background: var(--accent-1);
    color: var(--background-1);
    border: none;
    display: flex;
    border-radius: 2px;
    text-decoration: none;
    align-items: center;
    gap: 12px;
    align-self: start;
    white-space: nowrap;
    flex-shrink: 0;
    flex-grow: 0;
    width: 150px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 
   SCROLLING BANNER - LOOP INFINITO
    */
.scrolling-banner {
    background: #2FA2D4;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-banner-content {
    display: inline-flex;
    gap: 60px;
    animation: scrollInfinite 20s linear infinite;
    will-change: transform;
}

.banner-item {
    font-family: var(--font-spartan);
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 
   EXPERIENCE SECTION - CONFORME FIGMA (47:157)
    */
.experience-section {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(11, 39, 73, 1) 0%, rgba(69, 46, 129, 1) 53%, rgba(11, 39, 73, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.experience-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.experience-number-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 75px;
}

.experience-number {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 83.47px;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: #2FA2D4;
    text-align: center;
    width: 160.41px;
}

.experience-text {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4em;
    color: #FFFFFF;
    text-align: center;
    width: 71px;
}

.experience-divider {
    width: 2px;
    height: 108px;
    background: #2FA2D4;
    flex-shrink: 0;
}

.experience-description {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4em;
    color: #FFFFFF;
    width: 305px;
    max-width: 305px;
}

.experience-image {
    display: none;
}

/* 
   ABOUT SECTION 
    */
.about-section {
    padding: 80px 50px;
}

.about-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.about-image {
    width: 409.27px;
    height: 508.39px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 598px;
}

.about-title {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 64px;
    line-height: 1em;
    letter-spacing: -0.02em;
    text-align: center;
    background: var(--gradient-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.about-text {
    max-width: 445.25px;
    text-align: center;
}

.about-text p {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35em;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* 
   FEATURES SECTION - CONFORME FIGMA (47:306)
    */
.features-section {
    padding: 80px 50px;
}

.features-container {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.features-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.features-heading h2 {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 64px;
    line-height: 1em;
    letter-spacing: -0.02em;
    text-align: center;
    background: var(--gradient-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    max-width: 655.74px;
}

.features-description {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35em;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
    max-width: 572.59px;
    margin: 0;
}

.features-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    width: 1012px;
}

.feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 490px;
    height: 83px;
    padding: 16px 64px 16px 32px;
    background: var(--gradient-linear);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 39, 73, 0.3);
}

.feature-icon {
    width: 51px;
    height: 51px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--background-1);
}

.features-button-wrapper {
    text-align: center;
}

.features-button-wrapper .btn-primary {
    height: 41px;
}

/* 
   REVIEWS SECTION - CONFORME FIGMA (47:351)
    */
.reviews-section {
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.reviews-container {
    max-width: 1152px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.reviews-heading {
    text-align: center;
}

.reviews-heading h2 {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 64px;
    line-height: 1em;
    letter-spacing: -0.02em;
    text-align: center;
    background: var(--gradient-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.reviews-swiper {
    width: 100%;
    padding-left: 32px;
}

.reviews-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-1);
}

.review-text {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 30px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.review-author-name {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-paragraph);
}

/* 
   GALLERY SECTION - CONFORME FIGMA (47:387)
    */
.gallery-section {
    padding: 80px 50px;
    background: linear-gradient(93deg, #0B2749 0%, #452E81 52.88%, #0B2749 100%);
}

.gallery-container {
    max-width: 1152px;
    margin: 0 auto;
}

.gallery-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.gallery-text {
    display: flex;
    align-items: center;
}

.gallery-title {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 56px;
    line-height: 1.1em;
    color: #FFFFFF;
}

/* 
   INSTAGRAM SECTION
    */
.instagram-section {
    padding: 80px 50px;
}

.instagram-container {
    max-width: 1152px;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-icon {
    margin-bottom: 20px;
}

.instagram-section .instagram-header .instagram-title,
h2.instagram-title {
    text-align: center !important;
    font-family: var(--font-spartan) !important;
    font-size: 64px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    letter-spacing: -1.28px !important;
    background: linear-gradient(93deg, #0B2749 0%, #452E81 52.88%, #0B2749 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    margin: 0 !important;
    display: inline-block !important;
}

.ig-iframe iframe{
    display: flex;
    width: 900px; 
    height: 760px;
    margin: auto;
}
@media screen and (max-width:980px) {
    .ig-iframe iframe{
        max-width: 500px; 
        height: 495px;
    }    
}
@media screen and (max-width:580px) {
    .ig-iframe iframe{
        width:100%;
        max-width: 390px; 
        height: 399px;
    }    
}

/* 
   SECTION 12: FORM + MAP + AREAS (Node 47:424)
    */
.areas-form-wrapper {
    padding: 0 90px 40px;
    background: linear-gradient(135deg, #0B2749 0%, #452E81 53%, #0B2749 100%);
    width: 100%;
    max-width: 1124px;
    margin: auto;
    border-radius: 16px;
    margin-bottom: 40px;
}

/* Form + Map Wrapper (Frame 2147236516) */
.form-map-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 45px 0;
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

/* Contact Form Container (Frame 665) */
.contact-form-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 429px;
    height: 524px;
}

/* 
   FORMULÁRIO - CONFORME FIGMA (47:424)
    */
.contact-form-section {
    background: var(--gradient-linear);
    padding: 60px 50px;
    border-radius: 16px;
}

.form-container {
    max-width: 600px;
    background: var(--background-2);
    padding: 40px;
    border-radius: 20px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    color: var(--text-paragraph);
    background: var(--background-1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(1, 27, 64, 0.4);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 13.31px;
    line-height: 1.5;
    color: #000000;
    padding-bottom: 5px;
}

.form-group input,
.form-group textarea {
    font-family: 'Urbanist', sans-serif;
    font-size: 13.31px;
    border: 0.83px solid #000000;
    border-radius: 4px;
    color: #666666;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

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

.form-submit-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13.31px;
    line-height: 1.5;
    color: #000000;
    background: #FFFFFF;
    border: 0.83px solid #0B2749;
    border-radius: 83px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.form-submit-btn:hover {
    background: #0B2749;
    color: #FFFFFF;
}

/* Map Container (Frame 666) */
.map-container-wrapper {
    border-radius: 20px;
    width: 100%;
    max-width: 429px;
    height: 524px;
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Areas We Serve (Frame 2147238789) */
.areas-container {
    max-width: 1152px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.areas-heading {
    text-align: center;
    width: 100%;
}

.areas-heading h2 {
    font-family: var(--font-spartan);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    text-align: center;
    background: linear-gradient(180deg, rgba(224, 244, 255, 1) 0%, rgba(236, 229, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.areas-grid {
    display: flex;
    flex-direction: row;
    gap: 49px;
    width: 100%;
    max-width: 902px;
}

.areas-column {
    flex: 1;
}

.areas-column ul {
    padding: 0;
    margin: 0;
}

.areas-column li {
    font-family: var(--font-spartan);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    text-align: left;
    background: linear-gradient(180deg, rgba(224, 244, 255, 1) 0%, rgba(236, 229, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
    padding: 0;
    margin-bottom: 10px;
}

/* 
   CONTAINER CLASSES
    */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-container,
.gallery-container,
.instagram-container {
    max-width: 1152px;
    margin: 0 auto;
}

/* 
   MOBILE MENU
    */
.btn-message-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 30px;
    background: #2FA2D4;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: 0.1s ease-in-out;
}
.btn-message-now a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FFFFFF;
    font-family: var(--font-spartan);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.btn-message-now:hover {
    transform: scale(1.05);
    background: var(--accent-2);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
}

/* 
   MODAL FORM
    */
.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.form-modal.active {
    display: flex;
}

.form-modal .form-container {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-form {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-paragraph);
    cursor: pointer;
    line-height: 1;
}

/* 
   SERVICES HEADING
    */
.services-heading {
    padding: 80px 50px 40px;
    text-align: center;
}
.services-heading h2, .contact-section h2{
    background: linear-gradient(93deg, #0B2749 0%, #452E81 52.88%, #0B2749 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* 
   GALLERY ENHANCEMENTS
    */
.gallery-image-main {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.gallery-image-main .swiper-slide {
    width: 100%;
    height: 100%;
}

.gallery-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-image-main .swiper-button-prev,
.gallery-image-main .swiper-button-next {
    color: #FFFFFF;
    background: rgba(47, 162, 212, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.gallery-image-main .swiper-button-prev:after,
.gallery-image-main .swiper-button-next:after {
    font-size: 20px;
}

.gallery-image-main .swiper-button-prev:hover,
.gallery-image-main .swiper-button-next:hover {
    background: rgba(69, 46, 129, 0.9);
}

.gallery-image-main .swiper-pagination-bullet {
    background: #FFFFFF;
    opacity: 0.5;
}

.gallery-image-main .swiper-pagination-bullet-active {
    background: var(--accent-1);
    opacity: 1;
}

.gallery-slide {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 
   INSTAGRAM GRID
    */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* 
   SKIP LINK
    */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-1);
    color: var(--background-1);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* 
   UTILITY CLASSES
    */
/* Header Spacer */
.header-spacer {
    height: 70px;
}

/* Features Button Container */
.features-button-container {
    text-align: center;
    margin-top: 40px;
}
.features-button-container .btn-primarya{
    font-family: var(--font-spartan);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}
/* Contact Section */
.contact-section .container-narrow {
    text-align: center;
    padding: 80px 24px;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-section .btn-primary {
    font-size: 16px;
    padding: 20px 32px;
}

/* Map iframe */
.map-container iframe {
    border: 0;
}

/* 
   RESPONSIVE
    */
@media (max-width: 900px) {
    .header-inner {
        padding: 0 24px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0B2749;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        transition: left 0.3s ease-in-out;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu a {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .btn-m{display: block;}
    .btn-w{display: none;}

    .btn-message-now {
        margin-top: 0px;
    }
    .btn-message-now a{
        color: inherit;
        text-decoration: none;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        width: 100%;
        height: auto;
        max-width: 409.27px;
    }

    .about-content {
        width: 100%;
    }

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

    .features-grid {
        width: 100%;
        justify-content: center;
    }

    .feature-card {
        width: 100%;
        max-width: 490px;
    }

    .reviews-section {
        padding: 48px 24px;
    }

    .reviews-heading h2 {
        font-size: 40px;
    }

    .review-card {
        width: 100%;
        max-width: 336px;
        height: auto;
        min-height: 280px;
    }

    .areas-section {
        padding: 0 24px 40px;
    }

    .form-map-wrapper {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .contact-form-container,
    .map-container-wrapper {
        max-width: 100%;
    }

    .map-container-wrapper {
        height: 400px;
    }

    .areas-container {
        margin-top: 40px;
    }

    .areas-heading h2 {
        font-size: 32px;
    }

    .areas-grid {
        flex-direction: row;
        gap: 30px;
        flex-wrap: wrap;
    }

    .areas-column li {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 28px;
    }

    .hero-content {
        padding: 40px 24px 60px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-title {
        font-size: 40px;
        max-width: 100%;
    }

    .hero-social {
        width: 100%;
    }

    .experience-section {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .experience-number {
        font-size: 80px;
    }

    .experience-text {
        font-size: 32px;
    }

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

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

    .gallery-header {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 36px;
    }

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

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

/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue, linear-gradient(135deg, #3FB1B8 0%, #011B40 100%));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    /* Transição suave para fade effect */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #011B40 0%, #3FB1B8 100%);
    transform: translateY(0) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Estado visível - sobrescreve o display:none do JavaScript */
.scroll-to-top[style*="display: block"],
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ==============================================
   MEDIA QUERIES PARA MOBILE - CONFORME FIGMA
   ============================================== */

/* Mobile: até 600px */
@media (max-width: 600px) {
    /* Header - Conforme Figma Mobile (47:1959) */
    .header-inner {
        padding: 10px 30px;
    }

    .logo {
        width: 46.4px;
        height: 46.4px;
    }

    .logo img {
        width: 46.4px;
        height: 46.4px;
    }

    .btn-message-now {
        padding: 8.84px 26.52px;
        font-size: 14.14px;
        gap: 10.61px;
    }

    .btn-message-now svg {
        width: 18.64px;
        height: 18.64px;
    }

    /* Hero Section - Conforme Figma (47:1981) */
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 64px 90px;
        gap: 32px;
    }

    .hero-logo {
        width: 228.16px;
        height: 228.16px;
    }

    .hero-title {
        font-size: 44.6px;
        line-height: 1em;
        max-width: 263.3px;
    }

    .hero-cta .btn-primary a {
        padding: 10px 30px;
        height: 41px;
        font-size: 16px;
        gap: 12px;
    }

    .hero-cta .btn-primary a svg {
        width: 16.11px;
        height: 20.53px;
    }

    .hero-social {
        width: 158.53px;
        gap: 12.31px;
    }

    .hero-social a {
        width: 44.63px;
        height: 44.63px;
    }

    /* Scrolling Banner */
    .scrolling-banner {
        padding: 15px 0;
    }

    .banner-item {
        font-size: 16px;
    }

    /* Experience Section - Conforme Figma (47:2014) */
    .experience-section {
        height: 267px;
        padding: 47px 0;
    }

    .experience-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .experience-number-group {
        flex-direction: row;
        width: fit-content;
    }

    .experience-number {
        font-size: 120px;
        width: auto;
        line-height: 70%;
    }

    .experience-text {
        font-size: 17.45px;
        line-height: 1.4em;
        width: 103.25px;
        text-align: center;
    }

    .experience-divider {
        width: 304.91px;
        height: 2px;
    }

    .experience-description {
        font-size: 12px;
        line-height: 1.4em;
        width: 305.01px;
        max-width: 305.01px;
        text-align: center;
    }

    /* Services Heading - Conforme Figma (47:2022) */
    .services-heading {
        padding: 96px 32px 80px;
    }

    .services-heading h2 {
        font-size: 36px;
        max-width: 356.18px;
    }

    /* Services Section - Conforme Figma (47:2069) */
    .services-section {
        padding: 0 50px 80px;
    }

    .service-card {
        flex-direction: column;
        gap: 50px;
        padding: 30px 0 40px;
        border-top: 0.5px solid var(--divider);
    }

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

    .service-image img {
        width: 100%;
        height: 310.54px;
        border-radius: 16px;
    }

    .service-content {
        gap: 20px;
        height: auto;
    }

    .service-title {
        font-size: 32px;
        line-height: 1.1em;
    }

    .service-description {
        font-size: 12px;
        line-height: 1.35em;
        letter-spacing: -0.02em;
    }

    .frequency-buttons {
        gap: 8px;
        width: 235px;
    }

    .frequency-btn {
        display: flex;
        text-align: center;
        line-height: 50%; /* 17.6px */
        letter-spacing: -0.32px;
        padding: 10px 8px;
    }

    .btn-outline {
        padding: 10px 30px;
        font-size: 16px;
        width: auto;
    }

    /* About Section - Conforme Figma (47:2294) */
    .about-section {
        padding: 0 50px;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 30px 0 60px;
    }

    .about-image {
        width: 238.26px;
        height: 295.96px;
    }

    .about-title {
        position: absolute;
        top: -30px;
        font-size: 36px;
    }

    .about-text {
        max-width: 283.59px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.35em;
    }

    /* Features Section - Conforme Figma (47:2309) */
    .features-section {
        padding: 0 64px 80px;
    }

    .features-container {
        gap: 32px;
    }

    .features-heading {
        gap: 24px;
    }

    .features-heading h2 {
        font-size: 36px;
        max-width: 321.72px;
    }

    .features-description {
        font-size: 14px;
        max-width: 572.59px;
    }

    .features-grid {
        flex-direction: column;
        gap: 21.22px;
        width: auto;
    }

    .feature-card {
        width: 324.98px;
        height: 55.05px;
        padding: 16px 0 16px 28px;
        gap: 16px;
    }

    .feature-icon {
        width: 33.82px;
        height: 33.82px;
    }

    .feature-text {
        font-size: 16.58px;
        line-height: 1.1em;
    }

    .features-button-container {
        margin-top: 32px;
    }

    .features-button-container .btn-primarya{
        height: 41px;
    }

    /* Reviews Section - Conforme Figma (47:2354) */
    .reviews-section {
        padding: 48px 64px;
    }

    .reviews-heading h2 {
        font-size: 36px;
    }

    .reviews-swiper {
        padding-left: 32px;
    }

    .review-card {
        width: 336px;
        height: 280px;
        padding: 32px;
    }

    .review-text {
        font-size: 18px;
        line-height: 1.45em;
    }

    .review-author-image {
        width: 48px;
        height: 48px;
    }

    .review-author-name {
        font-size: 16px;
    }

    /* Gallery Section - Conforme Figma (47:2390) */
    .gallery-section {
        padding: 80px 50px;
    }

    .gallery-header {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 36px;
        line-height: 1.1em;
    }

    /* Instagram Section - Conforme Figma (47:2400) */
    .instagram-section {
        padding: 80px 20px 20px;
    }

    .instagram-header {
        margin-bottom: 48px;
    }

    .instagram-icon {
        margin-bottom: 16px;
    }

    .instagram-icon svg {
        width: 40.79px;
        height: 40.79px;
    }

    .instagram-title {
        font-size: 56px !important;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Contact Section - Conforme Figma (47:2648) */
    .contact-section {
        padding: 80px 32px 0;
    }

    .contact-section .container-narrow {
        padding: 0;
    }

    .contact-section h2 {
        font-size: 32px;
        line-height: 1em;
        margin-bottom: 24px;
    }

    .contact-section p {
        font-size: 14px;
        line-height: 1.35em;
    }

    /* Form + Map + Areas - Conforme Figma (47:2903) */
    .areas-section {
        padding: 0;
    }

    .areas-form-wrapper {
        padding: 45px 20px;
        border-radius: 16px;
        margin: 40px 0 0;
        border-radius: 0;
    }

    .form-map-wrapper {
        flex-direction: column;
        padding: 0;
        gap: 24px;
    }

    .contact-form-container {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 18px;
    }

    .map-container-wrapper {
        max-width: 100%;
        width: 100%;
        height: 300px;
    }

    /* Areas We Serve - Conforme Figma (47:2943) */
    .areas-container {
        gap: 16px;
        padding: 40px 0 0;
    }

    .areas-heading {
        border-bottom: 1.25px solid rgba(255, 255, 255, 0.2);
        padding-bottom:30px;
        margin-bottom: 30px;
        max-width: 85%;
    }

    .areas-heading h2 {
        font-size: 40px;
        line-height: 1.1em;
    }

    .areas-grid {
        max-width: 100%;
        gap: 20%;
        padding-left: 30px;
        row-gap: 30px;
    }

    .areas-column {
        width: 100%;
    }

    .areas-column li {
        font-size: 18px;
        line-height: 1.1em;
    }

    /* Footer - Conforme Figma (47:2963) */
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 80px 32px 50px;
        gap: 50px;
    }

    .footer-logo, .footer-logo a {
        width: 200px;
        height: 200px;
        margin: auto;
    }

    .footer-social-buttons {
        width: 152px;
        gap: 11px;
    }

    .footer-social-icon {
        width: 43px;
        height: 43px;
    }

    .footerabout ul li{
        justify-content: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-link {
        font-size: 14.789px;
        padding: 8.45px 0;
    }

    .footer-hours-text {
        font-size: 12.676px;
        text-align: center;
    }

    .footer-bottom {
        width: 100%;
        padding: 40px 16px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }

    .footer-legal a {
        font-size: 10px;
    }
    /* Typography Adjustments */
    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
    }

    p {
        font-size: 14px;
    }
}

/* ==============================================
   MEDIA QUERIES PARA TABLET
   ============================================== */

/* Tablet Pequeno: 600px - 768px */
@media (min-width: 600px) and (max-width: 768px) {
    /* Header */
    .header-inner {
        padding: 0 40px;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    /* Hero Section */
    .hero-content {
        padding: 50px 40px 70px;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-title {
        font-size: 48px;
        max-width: 550px;
    }

    /* Services */
    .services-section {
        padding: 60px 40px;
    }

    .service-card {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-content {
        height: auto;
    }

    /* Experience Section */
    .experience-section {
        height: auto;
        padding: 40px;
    }

    .experience-content {
        flex-direction: column;
        gap: 24px;
    }

    .experience-divider {
        width: 200px;
        height: 2px;
    }

    .experience-description {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }

    /* About Section */
    .about-section {
        padding: 60px 40px;
    }

    .about-container {
        flex-direction: column;
        gap: 32px;
    }

    .about-image {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .about-content {
        width: 100%;
    }

    /* Features */
    .features-section {
        padding: 60px 40px;
    }

    .features-grid {
        width: 100%;
        justify-content: center;
    }

    .feature-card {
        width: 100%;
        max-width: 450px;
    }

    /* Reviews */
    .reviews-section {
        padding: 48px 40px;
    }

    /* Gallery */
    .gallery-section {
        padding: 60px 40px;
    }

    .gallery-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Instagram */
    .instagram-section {
        padding: 60px 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    /* Form + Map */
    .areas-form-wrapper {
        padding: 0 40px 40px;
    }

    .form-map-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .contact-form-container,
    .map-container-wrapper {
        max-width: 100%;
    }

    /* Footer */
    .footer-container {
        padding: 60px 40px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-nav {
        gap: 60px;
    }
}

/* Tablet Médio: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Header */
    .header-inner {
        padding: 0 50px;
    }

    .navbar {
        max-width: 100%;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .nav-menu ul {
        gap: 24px;
    }

    .nav-menu a {
        font-size: 15px;
    }

    /* Hero Section */
    .hero-section {
        min-height: calc(70vh - 70px);
    }

    .hero-content {
        padding: 55px 50px 75px;
        max-width: 100%;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-title {
        font-size: 52px;
        max-width: 600px;
    }

    /* Scrolling Banner */
    .banner-item {
        font-size: 18px;
    }

    /* Experience Section */
    .experience-section {
        height: auto;
        padding: 50px;
    }

    .experience-content {
        gap: 32px;
    }

    .experience-number {
        font-size: 90px;
    }

    .experience-text {
        font-size: 14px;
        width: 80px;
    }

    .experience-divider {
        height: 120px;
    }

    .experience-description {
        font-size: 13px;
        width: 350px;
        max-width: 350px;
    }

    /* Services */
    .services-heading {
        padding: 60px 50px 30px;
    }

    .services-heading h2 {
        font-size: 52px;
    }

    .services-section {
        padding: 60px 50px;
    }

    .services-grid {
        max-width: 100%;
    }

    .service-card {
        flex-direction: row;
        gap: 40px;
    }

    .service-image {
        max-width: 380px;
        flex: 1;
    }

    .service-content {
        flex: 1;
        height: auto;
        min-height: 250px;
    }

    .service-title {
        font-size: 36px;
    }

    .service-description {
        font-size: 13px;
        max-width: 100%;
    }

    .frequency-buttons {
        flex-wrap: wrap;
        gap: 6px;
    }

    .frequency-btn {
        font-size: 14px;
        padding: 8px;
    }

    /* About Section */
    .about-section {
        padding: 70px 50px;
    }

    .about-container {
        flex-direction: row;
        gap: 40px;
        max-width: 100%;
    }

    .about-image {
        width: 350px;
        height: 435px;
    }

    .about-content {
        width: auto;
        flex: 1;
    }

    .about-title {
        font-size: 52px;
    }

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

    .about-text p {
        font-size: 13px;
    }

    /* Features Section */
    .features-section {
        padding: 70px 50px;
    }

    .features-heading h2 {
        font-size: 52px;
        max-width: 90%;
    }

    .features-description {
        font-size: 13px;
        max-width: 90%;
    }

    .features-grid {
        width: 100%;
        max-width: 900px;
        gap: 24px;
    }

    .feature-card {
        width: calc(50% - 12px);
        min-width: 400px;
        height: 75px;
        padding: 14px 50px 14px 28px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-text {
        font-size: 22px;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 48px 50px;
    }

    .reviews-heading h2 {
        font-size: 52px;
    }

    .reviews-swiper {
        padding-left: 24px;
    }

    .review-card {
        padding: 32px;
        max-width: 320px;
    }

    .review-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 70px 50px;
    }

    .gallery-header {
        gap: 50px;
    }

    .gallery-title {
        font-size: 48px;
    }

    /* Instagram Section */
    .instagram-section {
        padding: 70px 50px;
    }

    .instagram-title {
        font-size: 52px !important;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    /* Contact Section */
    .contact-section .container-narrow {
        padding: 70px 50px;
    }

    .contact-section h2 {
        font-size: 48px;
    }

    .contact-section p {
        font-size: 13px;
    }

    /* Form + Map + Areas */
    .areas-form-wrapper {
        padding: 0 40px 40px;
        max-width: 95%;
    }

    .form-map-wrapper {
        padding: 40px 0;
        gap: 30px;
        align-items: center;
    }

    .contact-form-container,
    .map-container-wrapper {
        max-width: 380px;
    }

    .contact-form-container {
        height: 480px;
    }

    .map-container-wrapper {
        height: 480px;
    }

    .areas-container {
        max-width: 100%;
    }

    .areas-heading h2 {
        font-size: 36px;
    }

    .areas-grid {
        max-width: 95%;
        gap: 40px;
    }

    .areas-column li {
        font-size: 16px;
    }

    /* Footer */
    .footer-container {
        padding: 70px 50px;
        max-width: 100%;
    }

    .footer-logo {
        width: 240px;
        height: 240px;
    }

    .footer-nav {
        gap: 50px;
    }

    .footer-column {
        width: 140px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-hours-text {
        font-size: 11px;
    }

    .footer-bottom {
        width: 95%;
    }

    .footer-bottom-row {
        gap: 40px;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 13px;
    }
}

/* Tablet Grande: 1024px - 1200px */
@media (min-width: 1024px) and (max-width: 1200px) {
    /* Header */
    .header-inner {
        padding: 0 60px;
    }

    .navbar {
        max-width: 100%;
    }

    /* Hero Section */
    .hero-content {
        max-width: 100%;
        padding: 60px 60px 85px;
    }

    .hero-logo {
        width: 215px;
        height: 215px;
    }

    .hero-title {
        font-size: 58px;
        max-width: 650px;
    }

    /* Services */
    .services-heading {
        padding: 70px 60px 35px;
    }

    .services-heading h2 {
        font-size: 58px;
    }

    .services-section {
        padding: 70px 60px;
    }

    .services-grid {
        max-width: 100%;
    }

    .service-card {
        gap: 45px;
    }

    .service-image {
        max-width: 480px;
    }

    .service-title {
        font-size: 38px;
    }

    /* About Section */
    .about-section {
        padding: 75px 60px;
    }

    .about-container {
        max-width: 100%;
        gap: 50px;
    }

    .about-image {
        width: 380px;
        height: 472px;
    }

    .about-title {
        font-size: 58px;
    }

    /* Features Section */
    .features-section {
        padding: 75px 60px;
    }

    .features-heading h2 {
        font-size: 58px;
    }

    .features-grid {
        max-width: 100%;
        gap: 28px;
    }

    .feature-card {
        width: calc(50% - 14px);
        min-width: 450px;
        padding: 15px 60px 15px 30px;
    }

    .feature-text {
        font-size: 23px;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 48px 60px;
    }

    .reviews-heading h2 {
        font-size: 58px;
    }

    .review-card {
        max-width: 350px;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 75px 60px;
    }

    .gallery-title {
        font-size: 52px;
    }

    /* Instagram Section */
    .instagram-section {
        padding: 75px 60px;
    }

    .instagram-title {
        font-size: 58px !important;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Form + Map */
    .areas-form-wrapper {
        padding: 0 70px 40px;
        max-width: 100%;
    }

    .contact-form-container,
    .map-container-wrapper {
        max-width: 410px;
    }

    .contact-form-container {
        height: 500px;
    }

    .map-container-wrapper {
        height: 500px;
    }

    .areas-grid {
        max-width: 100%;
    }

    /* Footer */
    .footer-container {
        padding: 75px 60px;
        max-width: 100%;
    }

    .footer-logo {
        width: 260px;
        height: 260px;
    }

    .footer-nav {
        gap: 55px;
    }

    .footer-column {
        width: 150px;
    }

    .footer-bottom {
        width: 100%;
    }
}
