/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #e6a21b;
    --color-primary-alt: #faa700;
    --color-dark: #1a1a1a;
    --color-dark-gray: #5a5a5a;
    --color-light-gray: #f7f7f7;
    --color-white: #ffffff;
    --color-whatsapp: #25d366;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Ubuntu', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-white);
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.main-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 6px 24px 0px rgba(7, 94, 84, 0.24);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Header */
.header {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    height: 123.42px;
    max-width: 1920px;
    margin: 0 auto;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.logo {
    position: relative;
    height: 91.42px;
    width: 200px;
    flex-shrink: 0;
}

.logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.nav {
    position: relative;
    display: flex;
    gap: 0;
    align-items: center;
    height: 80px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    line-height: 80px;
    padding: 0 16px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-whatsapp-header {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-whatsapp-text-desktop {
    display: inline-block;
}

.btn-whatsapp-text-mobile {
    display: none;
}

.btn-whatsapp-header::after {
    display: none;
}

.btn-whatsapp-header:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 768.77px;
    overflow: hidden;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-background {
    position: absolute;
    top: -33.25%;
    left: 0;
    width: 100%;
    height: 166.5%;
    background-image: url('assets/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    position: relative;
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 56px;
    text-align: center;
    max-width: 863px;
    width: 100%;
    margin: 0 auto 20px;
    padding: 0;
}

.hero-title span {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.hero-subtitle {
    position: relative;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #f7faff;
    line-height: 29.76px;
    text-align: center;
    max-width: 575px;
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 4px;
    text-decoration: none;
    width: 267.88px;
    height: 47px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
}

.btn-primary-text {
    position: absolute;
    left: calc(50% + 15.67px);
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-primary:hover .btn-primary-icon svg {
    fill: var(--color-white);
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 267px;
    z-index: 6;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transform: translateY(0);
}

.hero-divider > div {
    width: 100%;
    max-width: 1921px;
    height: 100%;
    flex: none;
    min-width: 100%;
    display: flex;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.hero-divider-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    margin: 0;
    padding: 0;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    min-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: visible;
}

.hero-divider svg path {
    shape-rendering: geometricPrecision;
}

/* Services Section */
.services {
    background-color: rgba(255, 185, 46, 0.1);
    height: 604.72px;
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-height: 700px;
    position: relative;
    padding: 0 20px;
    display: block;
}

.services-title {
    position: absolute;
    left: 50%;
    top: 129.5px;
    transform: translateX(-50%) translateY(-50%);
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    line-height: 52px;
    width: 100%;
    max-width: 650px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-subtitle {
    position: absolute;
    left: 50%;
    top: 190.5px;
    transform: translateX(-50%) translateY(-50%);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    line-height: 29.76px;
    width: auto;
    max-width: 400px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% + 75.88px);
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 4px;
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0px 24px 80px -24px rgba(0, 0, 0, 0.16);
    min-height: 208.95px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
    line-height: 24px;
}

.service-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-dark-gray);
    line-height: 20.8px;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: capitalize;
    box-shadow: 0px 4px 12px rgba(230, 162, 27, 0.4);
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta:hover {
    background-color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.service-cta:active {
    transform: translateY(-1px);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 0 0 100px 0;
    background-color: var(--color-white);
    position: relative;
    min-height: 842px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    padding-top: 79.61px;
    display: grid;
    grid-template-columns: 1fr 494px;
    gap: 60px;
    align-items: start;
}

.about-text {
    padding-left: 10px;
    max-width: 531.18px;
}

.about-image {
    position: relative;
    width: 494px;
    height: 800px;
    overflow: hidden;
    border-radius: 0 0 200px 200px;
    box-shadow: 16px 24px 80px -24px rgba(0, 0, 0, 0.16);
    margin-top: 0;
}

.about-img {
    width: 119.24%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    margin-left: -9.62%;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 52px;
}

.about-paragraph {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-dark-gray);
    line-height: 29.76px;
    margin-bottom: 20px;
    max-width: 531.18px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 185, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 24px;
}

.feature-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-dark-gray);
    line-height: 20.8px;
}


/* Contact Section */
.contact {
    position: relative;
    height: 538.25px;
    background-color: #000000;
    overflow: hidden;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 272.11%;
    background-image: url('assets/contact-background.jpg');
    background-size: cover;
    background-position: center;
    top: -86.05%;
}

.contact-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.13) 100%);
}

.contact-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 52px;
}

.contact-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-white);
    line-height: 29.76px;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0px 24px 80px -24px rgba(0, 0, 0, 0.16);
    height: 410.25px;
    margin-left: 24px;
    margin-right: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 17px 12px;
    border: 1px solid #dddddd;
    border-radius: 2px;
    background-color: #fafafa;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #757575;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
}

.btn-submit {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 92.56px;
}

.btn-submit:hover {
    background-color: #d4941a;
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 377.5px;
    overflow: hidden;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #000000;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.cta-bg-img {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 50%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.cta-content {
    position: absolute;
    z-index: 10;
    left: 960px;
    top: 0;
    width: calc(100% - 960px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
}

.cta-subtitle {
    position: relative;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #f7faff;
    line-height: 22.5px;
    width: 317.133px;
    margin: 0;
}

.cta-title {
    position: relative;
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    color: #f7faff;
    line-height: 52px;
    width: 501.081px;
    margin: 0;
}

.btn-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 0;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 205.67px;
    height: 49px;
}

.btn-cta svg {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
}

.btn-cta span {
    position: absolute;
    left: calc(50% + 16.08px);
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 0;
    background-color: var(--color-white);
    min-height: 545.16px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 187.5px;
    position: relative;
    min-height: 545.16px;
    display: grid;
    grid-template-columns: 294.283px 1fr;
    gap: 60px;
    align-items: start;
}

.testimonials-header {
    max-width: 294.283px;
}

.testimonials-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 52px;
    margin-bottom: 20px;
}

.testimonials-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 22.5px;
    max-width: 295.72px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0px 24px 80px -24px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
    min-height: 313.39px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    position: absolute;
    left: 40px;
    top: 42px;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
}

.testimonial-card:nth-child(2) .testimonial-quote {
    top: 32px;
}

.testimonial-card:nth-child(2) .testimonial-text {
    margin-top: 86.77px;
}

.testimonial-quote svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 5px;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-style: italic;
    color: #333333;
    line-height: 32.4px;
    margin-top: 76.77px;
    margin-bottom: 20px;
    padding-left: 5px;
}

.testimonial-author {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-dark);
    line-height: 24px;
    padding-left: 5px;
    margin-top: 0;
}

/* Locations Section */
.locations {
    padding: 0;
    background-color: #f7f7f7;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 187.5px;
    padding-bottom: 187.5px;
}

.locations-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.locations-banner {
    background-color: var(--color-primary-alt);
    border-radius: 6px 6px 0 0;
    height: 175.13px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

.location-card {
    color: var(--color-white);
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.location-card:first-child {
    padding-left: 122px;
    position: relative;
}

.location-card:last-child {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.location-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(247, 250, 255, 0.16);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 53.59px;
    transform: translateY(-50%);
    margin-bottom: 0;
}

.location-card:first-child .location-icon {
    left: 52px;
    top: 53.59px;
}

.location-card:last-child .location-icon {
    left: 52;
    top: 53px;
}

.location-icon svg {
    width: 24px;
    height: 24px;
}

.location-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    line-height: 26.4px;
    position: absolute;
    top: 53.59px;
    transform: translateY(-50%);
}

.location-card:last-child .location-title {
    font-size: 23px;
    line-height: 27.6px;
    top: 53px;
    left: 78px;
    width: 66.682px;
}

.location-card:first-child .location-title {
    left: 122px;
    width: 60.369px;
}

.location-card:first-child .location-address {
    left: 122px;
}

.location-card:first-child .location-phone {
    left: 122px;
}

.location-address {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-white);
    line-height: 29.76px;
    margin: 0;
    position: absolute;
    top: 103.89px;
    transform: translateY(-50%);
    width: 352.67px;
    margin-bottom: 0;
}

.location-card:last-child .location-address {
    font-size: 15px;
    top: 104.97px;
    width: 353.65px;
    left: 78px;
}

.location-card:first-child .location-address {
    left: 122px;
}

.location-phone {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-white);
    line-height: 29.76px;
    margin: 0;
    position: absolute;
    top: 120px;
    width: 352.67px;
}

.location-card:last-child .location-phone {
    top: 121px;
    width: 353.65px;
    left: 78px;
}

.location-card:first-child .location-phone {
    left: 122px;
}

.locations-map {
    background-color: var(--color-white);
    border-radius: 0 0 6px 6px;
    box-shadow: 0px 0px 80px -16px rgba(0, 0, 0, 0.16);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 10px 10px 10px;
    overflow: visible;
    min-height: 450px;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-title {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0;
    line-height: 24px;
    display: block;
    visibility: visible;
    opacity: 1;
}

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

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    height: 362px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-top {
    border-bottom: 1px solid #e6e6e6;
    height: 281px;
    display: flex;
    align-items: center;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 160px;
    padding-top: 60px;
}

.footer-logo {
    height: 160px;
    width: 350px;
}

.footer-logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

.footer-social {
    margin-right: 31px;
}

.social-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-white);
    line-height: 29.76px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-created-by {
    color: var(--color-white);
    margin-right: 4px;
}

.footer-aucta-logo {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}

.footer-link {
    color: var(--color-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

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

.footer-link:hover .footer-aucta-logo {
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 1921px) {
    .main-wrapper {
        max-width: 100%;
    }
    
    body {
        max-width: 100%;
    }
}

@media (max-width: 1400px) {
    .header-container,
    .services-container,
    .about-container,
    .contact-container,
    .testimonials-container,
    .locations-container,
    .footer-container {
        padding: 0 60px;
    }
    
    .cta-content {
        left: 50%;
        transform: translateX(-50%);
        max-width: 500px;
    }
    
    .hero-divider {
        height: 200px;
    }
    
    .hero-divider > div {
        width: 100%;
        max-width: 1921px;
        height: 100%;
    }
    
    .hero-divider svg {
        width: 100%;
        height: 100%;
        min-width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
        line-height: 54px;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-header {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 1024px) {
    .header-container,
    .services-container,
    .about-container,
    .contact-container,
    .testimonials-container,
    .locations-container,
    .footer-container {
        padding: 0 40px;
    }
    
    .header-container {
        flex-wrap: wrap;
        height: auto;
        min-height: 90px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 48px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        height: auto;
        min-height: 350px;
    }
    
    .cta-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 40px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-bg-img {
        width: 100%;
        opacity: 0.4;
    }
    
    .locations-banner {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 175.13px;
    }
    
    .location-card:first-child,
    .location-card:last-child {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .location-card:first-child .location-icon,
    .location-card:last-child .location-icon {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .location-card:first-child .location-title,
    .location-card:last-child .location-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 15px;
    }
    
    .location-card:first-child .location-address,
    .location-card:last-child .location-address {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 10px;
    }
    
    .location-card:first-child .location-phone,
    .location-card:last-child .location-phone {
        position: relative;
        left: auto;
        top: auto;
    }
    
    .locations-map {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        padding-top: 0;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        height: auto;
        min-height: 60px;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        padding: 8px 15px;
        height: auto;
        min-height: 60px;
        flex-wrap: nowrap;
    }
    
    .logo {
        height: 50px;
        width: 150px;
    }
    
    .logo-img {
        height: 100%;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
        z-index: 99;
    }
    
    .nav.active {
        max-height: 400px;
        padding: 20px 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        line-height: 1.5;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-buttons {
        display: flex;
        gap: 8px;
        margin-left: auto;
        order: 2;
    }
    
    .btn-whatsapp-header {
        font-size: 14px;
        padding: 10px 16px;
        width: auto;
        height: 40px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        white-space: nowrap;
    }
    
    .btn-whatsapp-text-desktop {
        display: none;
    }
    
    .btn-whatsapp-text-mobile {
        display: inline-block;
    }
    
    .btn-whatsapp-header::after {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    /* Hero Section */
    .hero {
        height: 500px;
        min-height: 500px;
        padding-top: 60px;
        margin-top: 0;
    }
    
    .hero-background {
        top: 0;
        height: 100%;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 40px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
        max-width: 100%;
        margin-bottom: 15px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .hero-title span {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
        margin-bottom: 25px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
        height: 44px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .hero-divider {
        height: 120px;
        bottom: 0;
    }
    
    .services {
        margin-top: -1px;
    }
    
    .hero-divider > div {
        width: 100%;
        height: 100%;
        min-width: 100%;
    }
    
    .hero-divider-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
    
    /* Services Section */
    .services {
        height: auto;
        min-height: auto;
        padding: 40px 0;
        position: relative;
    }
    
    .services-container {
        position: relative;
        height: auto;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .services-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 12px;
        height: auto;
        width: 100%;
        text-align: center;
        order: 1;
    }
    
    .services-subtitle {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        font-size: 15px;
        margin-bottom: 25px;
        height: auto;
        width: 100%;
        text-align: center;
        order: 2;
    }
    
    .services-grid {
        order: 3;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
        width: 100%;
    }
    
    .service-card {
        height: auto;
        min-height: auto;
        padding: 30px 20px;
        padding-top: 50px;
        width: 100%;
    }
    
    .service-icon {
        top: -30px;
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .service-cta {
        font-size: 13px;
        padding: 10px 20px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* About Section */
    .about {
        padding: 50px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    
    .about-subtitle {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .about-image {
        order: 1;
        width: 100%;
        max-width: 100%;
        height: 350px;
        margin: 0 auto;
    }
    
    .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin-left: 0;
        border-radius: 0 0 80px 80px;
    }
    
    /* CTA Section */
    .cta-section {
        height: auto;
        min-height: 400px;
        padding: 50px 0;
        position: relative;
    }
    
    .cta-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .cta-bg-img {
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 0.3;
        object-fit: cover;
        object-position: center;
    }
    
    .cta-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 50px 20px;
        max-width: 100%;
        z-index: 10;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        height: 44px;
        font-size: 15px;
        margin: 0 auto;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .testimonials-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 12px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
        line-height: 22px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .testimonial-quote {
        left: 20px;
        top: 25px;
        width: 28px;
        height: 28px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 50px;
        padding-left: 0;
    }
    
    .testimonial-author {
        font-size: 14px;
        padding-left: 0;
        margin-top: 15px;
    }
    
    /* Locations Section */
    .locations {
        padding: 50px 0;
    }
    
    .locations-container {
        padding: 0 20px;
    }
    
    .locations-banner {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        border-radius: 6px 6px 0 0;
    }
    
    .location-card {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .location-card:first-child,
    .location-card:last-child {
        padding: 30px 20px;
    }
    
    .location-icon {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
    }
    
    .location-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .location-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 24px;
    }
    
    .location-address {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 22px;
    }
    
    .location-phone {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        font-size: 14px;
        line-height: 22px;
    }
    
    .locations-map {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 15px;
        border-radius: 0 0 6px 6px;
    }
    
    .map-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .map-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        font-weight: 500;
        color: var(--color-dark);
    }
    
    .map-container {
        height: 300px;
        border-radius: 4px;
        overflow: hidden;
        width: 100%;
    }
    
    .google-map {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }
    
    /* Footer Section */
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        height: auto;
        padding: 0 20px;
        padding-top: 40px;
        padding-bottom: 30px;
        text-align: center;
    }
    
    .footer-logo {
        width: 100%;
        max-width: 250px;
        height: auto;
        margin: 0 auto;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    
    .footer-social {
        margin-right: 0;
        justify-content: center;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
    
    .footer-bottom p {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        text-align: center;
        font-size: 13px;
        line-height: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .footer-created-by {
        margin-right: 4px;
    }
    
    .footer-aucta-logo {
        height: 18px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    /* Contact Section */
    .contact {
        height: auto;
        min-height: auto;
        padding: 50px 0;
    }
    
    .contact-background {
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.3;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .contact-info {
        text-align: center;
        order: 1;
    }
    
    .contact-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 25px;
    }
    
    .contact-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-buttons .btn-primary {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }
    
    .contact-form-wrapper {
        order: 2;
        padding: 30px 20px;
        height: auto;
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-input {
        padding: 15px 12px;
        font-size: 15px;
    }
    
    .btn-submit {
        width: 100%;
        max-width: 100%;
        height: 44px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .header-buttons {
        gap: 6px;
    }
    
    .btn-whatsapp-header {
        font-size: 13px;
        padding: 8px 12px;
        width: auto;
        height: 36px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .btn-whatsapp-text-desktop {
        display: none;
    }
    
    .btn-whatsapp-text-mobile {
        display: inline-block;
    }
    
    .btn-whatsapp-header::after {
        display: none;
    }
    
    .hero {
        height: 450px;
        min-height: 450px;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 30px 15px 30px;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 12px;
    }
    
    .hero-title span {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 240px;
        height: 44px;
        font-size: 14px;
    }
    
    .hero-divider {
        height: 80px;
        bottom: 0;
    }
    
    .services {
        margin-top: -1px;
    }
    
    .hero-divider > div {
        height: 100%;
        width: 100%;
    }
    
    .hero-divider-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
    
    .services-container,
    .about-container,
    .testimonials-container,
    .locations-container {
        padding: 40px 15px;
    }
    
    .services-title,
    .about-title,
    .cta-title,
    .testimonials-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 25px;
    }
    
    .services-subtitle,
    .about-subtitle,
    .testimonials-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
    
    .service-card {
        padding: 25px 20px;
        min-height: auto;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        top: -28px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .service-cta {
        font-size: 13px;
        padding: 10px 18px;
        width: 100%;
        max-width: 180px;
    }
    
    .about-image {
        height: 300px;
        border-radius: 0 0 60px 60px;
        width: 100%;
        max-width: 100%;
    }
    
    .about-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .about-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    
    .about-description {
        font-size: 13px;
        line-height: 20px;
    }
    
    .about-text {
        padding: 0;
    }
    
    .cta-section {
        min-height: 350px;
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 40px 15px;
        text-align: center;
    }
    
    .cta-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .cta-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 240px;
        height: 44px;
        font-size: 14px;
        margin: 0 auto;
    }
    
    .testimonials-container {
        padding-top: 40px;
        padding-bottom: 40px;
        grid-template-columns: 1fr;
    }
    
    .testimonials-header {
        margin-bottom: 25px;
    }
    
    .testimonials-title {
        font-size: 22px;
        line-height: 28px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    
    .testimonial-card {
        padding: 25px 18px;
        min-height: auto;
    }
    
    .testimonial-quote {
        left: 18px;
        top: 20px;
        width: 24px;
        height: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 22px;
        margin-top: 40px;
        padding-left: 0;
    }
    
    .testimonial-author {
        font-size: 13px;
        padding-left: 0;
        margin-top: 12px;
    }
    
    .locations-banner {
        border-radius: 6px 6px 0 0;
    }
    
    .location-card {
        padding: 25px 18px;
    }
    
    .location-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .location-address,
    .location-phone {
        font-size: 13px;
        line-height: 20px;
    }
    
    .map-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .map-title {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 0;
        font-weight: 500;
    }
    
    .map-container {
        height: 250px;
        width: 100%;
    }
    
    .google-map {
        width: 100%;
        height: 100%;
    }
    
    .locations {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .locations-banner {
        height: auto;
        min-height: auto;
        border-radius: 6px 6px 0 0;
    }
    
    .location-card:first-child,
    .location-card:last-child {
        padding: 25px 20px;
    }
    
    .location-icon {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .location-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-bottom: 12px;
        font-size: 20px;
    }
    
    .location-address {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 22px;
    }
    
    .location-phone {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        font-size: 14px;
        line-height: 22px;
    }
    
    .map-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .footer-container {
        padding: 30px 15px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 200px;
        height: auto;
        margin: 0 auto;
    }
    
    .footer-social {
        margin: 0 auto;
    }
    
    .footer-bottom {
        height: auto;
        padding: 20px 15px;
    }
    
    .footer-bottom {
        height: auto;
        padding: 20px 15px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        line-height: 18px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: center;
        align-items: center;
    }
    
    .footer-created-by {
        display: inline;
        margin-right: 3px;
    }
    
    .footer-aucta-logo {
        height: 12px;
    }
    
    .footer-link {
        display: inline-flex;
        align-items: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    /* Ajustes gerais para mobile */
    .hero-divider {
        height: 60px;
    }
    
    .hero-divider > div {
        height: 100%;
        width: 100%;
    }
    
    .hero-divider svg {
        width: 100%;
        height: 100%;
        min-width: 100%;
    }
    
    .hero-divider-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-img {
        width: 100%;
        margin-left: 0;
    }
    
    /* Contact Section */
    .contact {
        padding: 40px 0;
    }
    
    .contact-container {
        padding: 0 15px;
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 12px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn-primary {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 25px 18px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-input {
        padding: 14px 12px;
        font-size: 14px;
    }
    
    .btn-submit {
        height: 42px;
        font-size: 14px;
    }
}
