* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background-color: #E0E0E0;
    line-height: 1.6;
}

#home {
    background-color: #E0E0E0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 150ms;
}

nav a:hover {
    color: #D97706;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #D97706;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 150ms;
}

.whatsapp-btn:hover {
    background-color: #B45309;
}

.whatsapp-btn img {
    width: 1.25rem;
    height: 1.25rem;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 150ms;
}

.menu-btn:hover {
    background-color: #F3F4F6;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #E5E7EB;
}

.mobile-nav a {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 150ms;
}

.mobile-nav a:hover {
    background-color: #F3F4F6;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .whatsapp-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .menu-btn.active+.mobile-nav {
        display: flex;
    }
}

/* Hero Section - Ampliada */
#home {
    position: relative;
    overflow: hidden;
    background-color: #E0E0E0;
    padding-top: 4rem;
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    #home {
        padding-top: 6rem;
        padding-bottom: 8rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 0;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
}

.hero-bg-circle.primary {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #D97706;
}

.hero-bg-circle.secondary {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: #374151;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center; /* Centraliza verticalmente o texto e o vídeo */
        text-align: left;
    }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(217, 119, 6, 0.1);
    color: #D97706;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #555555;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #D97706;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 150ms;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #B45309;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #374151;
    padding: 1rem 2.5rem;
    border: 2px solid #374151;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 150ms;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #374151;
    color: white;
}

.btn-secondary img {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #D97706;
}

.stat-label {
    font-size: 0.875rem;
    color: #555555;
    margin-top: 0.25rem;
}

/* Vídeo Ampliado e Controles */
.hero-image {
    flex: 1.5;
    width: 100%;
    max-width: 800px;
    position: relative;
    margin-top: 2rem; /* Move o vídeo um pouco mais para baixo */
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.video-control-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 9999px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
    backdrop-filter: blur(4px);
}

.video-control-btn:hover {
    background-color: #D97706;
    transform: scale(1.1);
}

.hidden {
    display: none !important;
}

.hero-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 10rem;
    height: 10rem;
    border: 3px solid #D97706;
    opacity: 0.15;
    border-radius: 1.5rem;
    z-index: 5;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(to right, #D97706, #374151, #D97706);
    opacity: 0.3;
}

/* Services Section */
#servicos {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 8rem;
    background-color: #E0E0E0;
}

@media (min-width: 768px) {
    #servicos {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.section-header {
    max-width: 42rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #555555;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border-left: 4px solid #D97706;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 300ms;
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    transition: background-color 150ms;
}

.service-card:hover .service-icon {
    background-color: #D97706;
}

.service-icon img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.service-description {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
    space: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-list-dot {
    width: 1.25rem;
    height: 1.25rem;
    background-color: rgba(217, 119, 6, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.service-list-dot::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: #D97706;
    border-radius: 9999px;
}

.service-list li span {
    font-size: 0.875rem;
    color: #333333;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #D97706;
    font-weight: 600;
    text-decoration: none;
    transition: color 150ms;
}

.service-link:hover {
    color: #B45309;
}

.service-link span {
    transition: transform 150ms;
}

.service-link:hover span {
    transform: translateX(0.25rem);
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(217, 119, 6, 0.1);
    color: #D97706;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 150ms;
    border: 2px solid #D97706;
}

.service-gallery-btn:hover {
    background-color: #D97706;
    color: white;
    transform: translateY(-0.125rem);
}

.cta-section {
    background: linear-gradient(to right, #374151, rgba(55, 65, 81, 0.8));
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
    color: #374151;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 150ms;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #F3F4F6;
}

.cta-btn img {
    width: 1.25rem;
    height: 1.25rem;
}

/* Gallery Sections */
.gallery-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 8rem;
    background-color: #E0E0E0;
}

@media (min-width: 768px) {
    .gallery-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.gallery-header {
    max-width: 42rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.gallery-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .gallery-header h2 {
        font-size: 3rem;
    }
}

.gallery-header p {
    font-size: 1.125rem;
    color: #555555;
}

.gallery-placeholder {
    background-color: #F3F4F6;
    border: 2px dashed #D1D5DB;
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    color: #555555;
    font-size: 1.125rem;
    min-height: 20rem;
    display: flex;
}

/* About Section */
#sobre {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 8rem;
    background-color: #E0E0E0;
}

@media (min-width: 768px) {
    #sobre {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-description {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.differentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.differentials-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.differential-item {
    display: flex;
    gap: 0.75rem;
}

.differential-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #D97706;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.differential-content h4 {
    font-weight: 600;
    color: #333333;
}

.differential-content p {
    font-size: 0.875rem;
    color: #555555;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

.stat-card.primary {
    background: linear-gradient(to bottom right, #D97706, #EA580C);
}

.stat-card.secondary {
    background: linear-gradient(to bottom right, #374151, #4B5563);
}

.stat-card.primary-light {
    background: linear-gradient(to bottom right, rgba(217, 119, 6, 0.8), #F97316);
}

.stat-card.secondary-light {
    background: linear-gradient(to bottom right, rgba(55, 65, 81, 0.8), #4B5563);
}

.stat-card-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.stat-card-description {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-top: 0.5rem;
}

/* Contact Section */
#contato {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 8rem;
    background-color: #E0E0E0;
}

@media (min-width: 768px) {
    #contato {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
    transition: box-shadow 150ms;
}

.contact-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #D97706;
}

.contact-item-content h4 {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    color: #555555;
    font-size: 0.875rem;
}

.contact-item-content a {
    color: #D97706;
    text-decoration: none;
    transition: color 150ms;
}

.contact-item-content a:hover {
    color: #B45309;
}

.contact-form {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 150ms;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    ring: 2px;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1), 0 0 0 2px #D97706;
}

.form-group textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    background-color: #D97706;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 150ms;
}

.form-submit:hover {
    background-color: #B45309;
}

.form-privacy {
    font-size: 0.75rem;
    color: #555555;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    position: relative;
    background-color: #374151;
    color: white;
}

.footer-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 150ms;
}

.footer-section a:hover {
    color: #D97706;
}

footer a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 150ms;
}

footer a:hover {
    color: #D97706;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 150ms;
}

.footer-links a:hover {
    color: #D97706;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 3rem;
    height: 3rem;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text strong {
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-brand-text small {
    font-size: 0.75rem;
    color: #D1D5DB;
}

.footer-description {
    color: #D1D5DB;
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    color: #D1D5DB;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #10B981;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 150ms;
    z-index: 40;
}

.whatsapp-float:hover {
    background-color: #059669;
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 1.75rem;
    height: 1.75rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.break-all {
    word-break: break-all;
}