/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --first-color: #BEA46A;
    --text-color: #cccccc;
    --whatsapp-color: #25D366;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Section */
.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #BEA46A;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #BEA46A, #FFD700);
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(190, 164, 106, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav__logo-img:hover {
    transform: scale(1.1);
}

.nav__logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.nav__logo span {
    color: #BEA46A;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BEA46A;
    transition: width 0.3s ease;
}

.nav__link:hover::before {
    width: 100%;
}

.nav__link:hover {
    color: #BEA46A;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Altura do header fixo */
    padding-top: 20px; /* Espaçamento adicional para mobile */
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23BEA46A" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero__title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #BEA46A;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(190, 164, 106, 0.3);
    position: relative;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero__tech-bg {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(190, 164, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.hero__tech-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #BEA46A, #FFD700);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, #BEA46A, #FFD700);
    color: #000000;
    border: 2px solid transparent;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(190, 164, 106, 0.4);
}

.btn--secondary {
    background: transparent;
    color: #BEA46A;
    border: 2px solid #BEA46A;
}

.btn--secondary:hover {
    background: #BEA46A;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(190, 164, 106, 0.3);
}

.btn--contact {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: 2px solid transparent;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
}

.btn--contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Services Section */
.services {
    background: #111111;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(190, 164, 106, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service__card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(190, 164, 106, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(190, 164, 106, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.service__card:hover::before {
    opacity: 1;
}

.service__card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(190, 164, 106, 0.3);
    box-shadow: 0 20px 60px rgba(190, 164, 106, 0.15);
}

.service__card--featured {
    border: 2px solid rgba(190, 164, 106, 0.2);
}

.service__card--featured:hover {
    border-color: rgba(190, 164, 106, 0.5);
    box-shadow: 0 25px 80px rgba(190, 164, 106, 0.25);
}

.service__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85) contrast(1.1);
}

.service__card:hover .service__image img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.service__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(190, 164, 106, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.service__card:hover .service__overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(190, 164, 106, 0.4) 100%);
    opacity: 0.9;
}

.service__overlay i {
    font-size: 3rem;
    color: #BEA46A;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.service__card:hover .service__overlay i {
    transform: scale(1.2);
    color: #FFD700;
    text-shadow: 0 4px 20px rgba(190, 164, 106, 0.6);
}

.service__content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #BEA46A;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service__card:hover .service__title {
    color: #FFD700;
}

.service__description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.service__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.service__feature {
    background: linear-gradient(135deg, rgba(190, 164, 106, 0.2), rgba(255, 215, 0, 0.1));
    color: #BEA46A;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(190, 164, 106, 0.3);
    transition: all 0.3s ease;
}

.service__card:hover .service__feature {
    background: linear-gradient(135deg, rgba(190, 164, 106, 0.3), rgba(255, 215, 0, 0.2));
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* CTA Card Styles */
.service__card--cta {
    background: linear-gradient(135deg, rgba(190, 164, 106, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(190, 164, 106, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service__card--cta:hover {
    background: linear-gradient(135deg, rgba(190, 164, 106, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-color: rgba(190, 164, 106, 0.6);
}

.service__cta-content {
    padding: 2rem;
}

.service__cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #ffffff;
    animation: pulse-whatsapp 2s infinite;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

@keyframes pulse-whatsapp {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
}

.service__card--cta .service__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service__card--cta .service__description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn--cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn--cta:hover::before {
    left: 100%;
}

.btn--cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn--cta i {
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    background: #000000;
}

.testimonials__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial__card {
    background: rgba(190, 164, 106, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(190, 164, 106, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    border-color: rgba(190, 164, 106, 0.4);
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial__stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial__text {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial__author h4 {
    color: #BEA46A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial__author span {
    color: #999999;
    font-size: 0.9rem;
}

/* Location Section */
.location {
    background: #111111;
}

.location__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
}

.location__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(190, 164, 106, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(190, 164, 106, 0.2);
}

.location__item i {
    font-size: 1.5rem;
    color: #BEA46A;
    margin-top: 0.2rem;
}

.location__item h4 {
    color: #BEA46A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location__item p {
    color: #cccccc;
    line-height: 1.5;
}

.location__map {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(190, 164, 106, 0.3);
}

.location__map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Contact Section */
.contact {
    background: #000000;
}

.contact__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.contact__card {
    background: rgba(190, 164, 106, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(190, 164, 106, 0.2);
    transition: all 0.3s ease;
}

.contact__card:hover {
    transform: translateY(-5px);
    border-color: rgba(190, 164, 106, 0.4);
}

.contact__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #BEA46A, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #000000;
}

.contact__card h3 {
    color: #BEA46A;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact__card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact__card--single {
    max-width: 500px;
    width: 100%;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(190, 164, 106, 0.2);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo h3 {
    color: #BEA46A;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer__logo p {
    color: #cccccc;
}

.footer__links h4,
.footer__contact h4 {
    color: #BEA46A;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #BEA46A;
}

.footer__social h4 {
    color: #BEA46A;
    font-weight: 600;
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(190, 164, 106, 0.3);
}

.instagram-link:hover {
    color: #BEA46A;
    background: rgba(190, 164, 106, 0.1);
    border-color: #BEA46A;
    transform: translateY(-2px);
}

.instagram-link i {
    font-size: 1.2rem;
    color: #E4405F;
}

.footer__contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__contact i {
    color: #BEA46A;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(190, 164, 106, 0.1);
    color: #999999;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    max-width: calc(100vw - 40px);
}

.whatsapp-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.7);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    margin-bottom: 10px;
    max-width: 100%;
}

.whatsapp-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    text-decoration: none;
    border-radius: 35px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 180px;
    max-width: calc(100vw - 50px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.whatsapp-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.whatsapp-option:hover::before {
    left: 100%;
}

.whatsapp-option:hover {
    transform: translateX(-10px) scale(1.05);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-option.chaveiro {
    background: linear-gradient(135deg, #BEA46A, #FFD700);
    color: #000000;
    box-shadow: 0 6px 25px rgba(190, 164, 106, 0.4);
}

.whatsapp-option.chaveiro:hover {
    background: linear-gradient(135deg, #BEA46A, #FFD700);
    box-shadow: 0 10px 35px rgba(190, 164, 106, 0.6);
}

.whatsapp-option i {
    font-size: 1.2rem;
}

.whatsapp-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.whatsapp-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-toggle:hover::before {
    opacity: 1;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    animation-play-state: paused;
}

.whatsapp-toggle.active {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    animation-play-state: paused;
}

.whatsapp-toggle.active:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 8px 35px rgba(255, 107, 107, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0); 
    }
    40% { 
        transform: translateY(-10px); 
    }
    60% { 
        transform: translateY(-5px); 
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 70px);
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .container {
        padding: 0 10px;
    }

    .hero__title-main {
        display: none;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav__close,
    .nav__toggle {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__title-sub {
        font-size: 1.2rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .services__category {
        padding: 2rem;
    }

    .testimonial__card,
    .contact__card {
        padding: 2rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }

    .whatsapp-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-option {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 140px;
        max-width: calc(100vw - 30px);
        gap: 10px;
    }

    .whatsapp-option i {
        font-size: 1rem;
    }

    .whatsapp-option span {
        font-size: 0.8rem;
    }

    .whatsapp-option:hover {
        transform: translateX(-3px) scale(1.01);
    }

    .location__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location__map {
        order: 1;
    }
    
    .location__info {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .container {
        padding: 0 10px;
    }

    .hero__title-sub {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .services__category {
        padding: 1.5rem;
    }

    .testimonial__card,
    .contact__card {
        padding: 2rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        max-width: calc(100vw - 30px);
    }

    .whatsapp-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-option {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 140px;
        max-width: calc(100vw - 30px);
        gap: 10px;
    }

    .whatsapp-option i {
        font-size: 1rem;
    }

    .whatsapp-option span {
        font-size: 0.8rem;
    }

    .whatsapp-option:hover {
        transform: translateX(-3px) scale(1.01);
    }

    .location__container {
        gap: 1.5rem;
    }
    
    .location__map iframe {
        height: 300px;
    }
}

/* Establishment Gallery */
.establishment-gallery {
    margin-top: 4rem;
    text-align: center;
}

.establishment-gallery__title {
    font-size: 2rem;
    color: #BEA46A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.establishment-gallery__subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(190, 164, 106, 0.3);
    color: #BEA46A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(190, 164, 106, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(190, 164, 106, 0.3);
}

.carousel-btn--prev {
    left: 20px;
}

.carousel-btn--next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(190, 164, 106, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #BEA46A;
    border-color: #BEA46A;
    transform: scale(1.2);
}

/* WhatsApp Menu Buttons */
.whatsapp-menu-button {
    position: relative;
    display: inline-block;
}

.whatsapp-menu-options {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 200px;
    margin-bottom: 10px;
}

.whatsapp-menu-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.whatsapp-menu-options .whatsapp-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.whatsapp-menu-options .whatsapp-option:last-child {
    margin-bottom: 0;
}

.whatsapp-menu-options .whatsapp-option:hover {
    background: var(--first-color);
    color: white;
    transform: translateX(5px);
}

.whatsapp-menu-options .whatsapp-option i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.whatsapp-menu-options .whatsapp-option.chaveiro:hover {
    background: linear-gradient(135deg, var(--first-color), #d4941a) !important;
    color: #000000;
}

.whatsapp-menu-options .whatsapp-option.assistencia:hover {
    background: linear-gradient(135deg, var(--whatsapp-color), #128c7e) !important;
    color: #000000;
}

/* Mobile responsiveness for menu buttons */
@media screen and (max-width: 768px) {
    .whatsapp-menu-options {
        min-width: 180px;
        padding: 0.75rem;
    }
    
    .whatsapp-menu-options .whatsapp-option {
        padding: 0.6rem 0.75rem;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-menu-options .whatsapp-option i {
        font-size: 1rem;
    }
}

.whatsapp-menu-options .whatsapp-option:hover {
    color: white;
    transform: translateX(5px);
}

.whatsapp-menu-options .whatsapp-option:not(.chaveiro):not(.assistencia):hover {
    background: var(--first-color);
}

.whatsapp-menu-options .whatsapp-option i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.whatsapp-menu-options .whatsapp-option.chaveiro:hover {
    background: linear-gradient(135deg, var(--first-color), #d4941a) !important;
    color: white;
}

.whatsapp-menu-options .whatsapp-option.assistencia:hover {
    background: linear-gradient(135deg, var(--whatsapp-color), #128c7e) !important;
    color: white;
}
