/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navegação */
.navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #666;
}

.nav-link.active {
    color: #333;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.hero-title-sub {
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    line-height: 1.5;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 18px) clamp(20px, 4vw, 35px);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: clamp(120px, 20vw, 160px);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: none;
    text-decoration: underline;
    font-weight: 500;
}

.btn-secondary:hover {
    color: #ccc;
    transform: translateY(-1px);
}

/* Conteúdo principal */
.main-content {
    padding: 0;
}

.sobre-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Seção de Diferenciais */
.diferenciais-section {
    background-color: #2c2c2c;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.diferenciais-section .container {
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    width: 100%;
}

.section-intro {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    width: 100%;
}

/* Container do Vídeo */
.video-container {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 784px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção de Soluções */
.solucoes-section {
    text-align: center;
    margin-top: 60px;
    width: 100%;
}

.solucoes-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: center;
}

.solucoes-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Botão CTA */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.btn-cta {
    background-color: #ffd700;
    color: #2c2c2c;
    border: 2px solid #ffd700;
    padding: 15px 35px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
    background-color: #ffd700;
    color: #2c2c2c;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

/* Seção de Vídeos */
.videos-section {
    background-color: #fff;
    padding: 60px 0;
}

/* Layout em 3 colunas para desktop */
@media (min-width: 768px) {
    .videos-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;
    }
    
    .videos-text {
        grid-column: 1;
        padding-right: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    
    .videos-container {
        grid-column: 2 / 4;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
        width: 100%;
    }
    
    .video-item {
        width: 100%;
        min-height: 300px;
    }
}

/* Layout otimizado para telas muito grandes */
@media (min-width: 1440px) {
    .videos-content {
        gap: 30px;
        max-width: 1400px;
    }
    
    .videos-container {
        gap: 25px;
    }
}

/* Layout padrão para telas menores */
@media (max-width: 767px) {
    .videos-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .videos-text {
        padding-right: 0;
        text-align: center;
    }
    
    .text-divider {
        margin: 15px auto;
    }
    
    .videos-cta {
        text-align: center;
        margin-top: 25px;
    }
    
    .videos-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .video-item {
        width: 100%;
        min-height: 300px;
        display: block;
    }
}

/* Estilos base para textos e vídeos */
.videos-text {
    padding-right: 15px;
}

.videos-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #023A8D, #F7931E);
    margin: 20px 0;
    border-radius: 2px;
}

.videos-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.videos-cta {
    margin-top: 20px;
}

.btn-videos-cta {
    background-color: #ffd700;
    color: #2c2c2c;
    border: 2px solid #ffd700;
    padding: 12px 25px;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-videos-cta:hover {
    background-color: #ffd700;
    color: #2c2c2c;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.video-item {
    width: 100%;
    min-height: 300px;
    display: block;
}

.video-wrapper-small {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    background-color: #f0f0f0;
}

.video-wrapper-small iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Seção de Resultados */
.results-section {
    background-color: #e9ecef;
    padding: 80px 0;
}

.results-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.results-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-video-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.results-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.results-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.content-section {
    padding: 80px 0;
}

.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.main-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #666;
}

.mobile-menu-btn.active {
    color: #007bff;
}

/* Header scroll effects */
.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.header {
    transition: transform 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navigation.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .main-content h1 {
        font-size: 2rem;
    }
    
    /* Hero responsivo */
    .hero {
        height: 85vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title-main {
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-title-sub {
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-description {
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Seção diferenciais responsiva */
    .diferenciais-section {
        padding: 60px 0;
    }
    
    .video-container {
        margin: 40px 0;
    }
    
    .solucoes-section {
        margin-top: 40px;
        text-align: center;
    }
    
    .solucoes-title {
        text-align: center;
    }
    
    .solucoes-description {
        text-align: center;
    }
    
    .cta-container {
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .main-content h1 {
        font-size: 1.8rem;
    }
    
    /* Hero mobile pequeno */
    .hero {
        height: 75vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 25px;
        padding: 0;
        line-height: 1.3;
    }
    
    .hero-buttons {
        margin-top: 20px;
        gap: 12px;
    }
    
    .btn {
        max-width: 200px;
        padding: 10px 20px;
    }
    
    /* Seção diferenciais mobile pequeno */
    .diferenciais-section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 15px;
    }
    
    .section-intro {
        margin-bottom: 30px;
    }
    
    .video-container {
        margin: 30px 0;
    }
    
    .solucoes-section {
        margin-top: 30px;
    }
    
    .solucoes-title {
        margin-bottom: 20px;
    }
    
    .solucoes-description {
        margin-bottom: 30px;
    }
    
    .cta-container {
        margin-top: 30px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    /* Seção de vídeos mobile pequeno */
    .videos-section {
        padding: 40px 0;
    }
    
    .videos-content {
        gap: 30px;
    }
    
    .videos-container {
        gap: 20px;
    }
}

/* Melhorias extras para telas pequenas */
@media (max-width: 360px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-title {
        margin-bottom: 15px;
    }
    
    .hero-description {
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-buttons {
        margin-top: 15px;
        gap: 10px;
    }
    
    .btn {
        max-width: 180px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Seção diferenciais telas muito pequenas */
    .diferenciais-section {
        padding: 30px 0;
    }
    
    .video-container {
        margin: 25px 0;
    }
    
    .solucoes-section {
        margin-top: 25px;
    }
    
    .btn-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 160px;
    }
    
    /* Seção de vídeos telas muito pequenas */
    .videos-section {
        padding: 30px 0;
    }
    
    .videos-content {
        gap: 25px;
    }
    
    .videos-container {
        gap: 15px;
    }
}

/* Animações suaves */
.nav-link {
    transition: all 0.3s ease;
}

/* Responsividade da seção de resultados */
@media (max-width: 768px) {
    .results-section {
        padding: 60px 0;
    }
    
    .results-video-container {
        margin-top: 30px;
    }
    
    .results-video-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .results-section {
        padding: 40px 0;
    }
    
    .results-video-container {
        margin-top: 25px;
    }
}

.nav-link:hover {
    transform: translateY(-1px);
}

/* Estados de foco para acessibilidade */
.nav-link:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Seção de Contato */
.contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.contact-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Informações de contato */
.contact-info {
    color: white;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-item-info {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Formulário de contato */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

.form-label {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.form-label .required {
    color: #e74c3c;
    font-weight: 700;
}

.form-input,
.form-textarea {
    padding: 15px;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    color: #333;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-input:invalid,
.form-textarea:invalid {
    border-color: #e74c3c;
}

.form-input:invalid:focus,
.form-textarea:invalid:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

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

.form-submit {
    background-color: #2c2c2c;
    color: white;
    border: 2px solid #2c2c2c;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    min-height: 48px;
}

.form-submit:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-submit:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    background-color: #999;
    border-color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mensagens de erro */
.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: #e74c3c;
}

/* Indicador de carregamento */
.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Classe para elementos visualmente ocultos mas acessíveis */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Links de contato */
.contact-item-info a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-item-info a:hover,
.contact-item-info a:focus {
    color: #d4af37;
    text-decoration: underline;
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Responsividade da seção de contato */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px 15px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px;
    }
    
    .form-submit {
        padding: 12px 25px;
    }
}

/* Seção de Galeria */
.gallery-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.gallery-prehead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gallery-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
    background-color: #d4af37;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-navigation {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #d4af37;
    transform: scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsividade da galeria */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -40px;
    }
    
    .lightbox-navigation {
        gap: 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
}

/* Melhorias de performance */
.logo-img {
    will-change: transform;
}

.nav-link {
    will-change: transform, color;
}

.gallery-item {
    will-change: transform;
}

.gallery-image {
    will-change: transform;
}

/* Seção de Depoimentos */
.testimonials-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

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

.testimonials-prehead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    height: auto;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 1;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    margin: 0 20px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #d4af37;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.star {
    font-size: 1.5rem;
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.star.empty {
    color: #ddd;
}

.testimonial-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-location {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #666;
    font-weight: 500;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.testimonial-prev:disabled,
.testimonial-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background-color: #d4af37;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.testimonial-dot:hover {
    background-color: rgba(212, 175, 55, 0.7);
    transform: scale(1.1);
}

/* CTA após depoimentos */
.testimonials-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-testimonial-cta {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #2c2c2c;
    border: 2px solid #d4af37;
    padding: 15px 35px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-testimonial-cta:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-testimonial-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
}

/* Responsividade dos depoimentos */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .testimonials-controls {
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        padding: 12px;
    }
    
    .testimonials-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .testimonials-controls {
        gap: 15px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        padding: 10px;
    }
    
    .testimonials-cta {
        padding: 25px 15px;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
}

.footer-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.footer-contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    justify-content: center;
    height: 100%;
}

.contact-phone,
.contact-email {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.contact-phone {
    font-weight: 700;
    font-size: clamp(1.2rem, 2.2vw, 1.3rem);
}

.btn-footer-whatsapp {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #2c2c2c;
    border: 2px solid #d4af37;
    padding: 15px 30px;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin-top: 10px;
}

.btn-footer-whatsapp:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-footer-whatsapp:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        max-width: 600px;
    }
    
    .footer-column {
        gap: 20px;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-contact-info {
        order: -1;
        padding: 30px 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin: 0 20px;
    }
    
    .social-links {
        justify-content: center;
        gap: 25px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .btn-footer-whatsapp {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 35px;
        margin: 0 15px;
    }
    
    .footer-column {
        gap: 18px;
    }
    
    .footer-contact-info {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .btn-footer-whatsapp {
        padding: 12px 25px;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}

/* Página Sobre Nós */
.hero-sobre {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-sobre::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.hero-sobre-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-sobre-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.hero-sobre-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.sobre-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-placeholder {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #d4af37;
}

.content-placeholder h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #333;
    margin-bottom: 15px;
}

.content-placeholder p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    line-height: 1.6;
}

/* Seção de Perfuração */
.perfuracao-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.perfuracao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna do Título */
.perfuracao-title-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.perfuracao-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
}

.title-line-1 {
    margin-bottom: 5px;
}

.title-line-2 {
    margin-bottom: 5px;
}

.title-line-3 {
    font-weight: 600;
    color: #666;
}

/* Coluna do Conteúdo */
.perfuracao-content-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.perfuracao-description {
    margin-bottom: 20px;
}

.perfuracao-description p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Estatísticas */
.perfuracao-stats {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin: 0;
    transition: all 0.3s ease;
    transform: scale(1);
}

.stat-number.animate {
    animation: countUp 2s ease-out forwards, glow 0.5s ease-in-out;
    transform: scale(1.1);
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.stat-number:hover {
    transform: scale(1.05);
    color: #FFA500;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #333;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
}

/* Seção com Imagem Sobre */
.sobre-image-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.sobre-image-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sobre-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sobre-image-container:hover .sobre-image {
    transform: scale(1.02);
}

/* Seção Perfuração Eficiente */
.perfuracao-eficiente-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.perfuracao-eficiente-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna do Texto */
.perfuracao-eficiente-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.perfuracao-eficiente-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.perfuracao-eficiente-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Coluna do Vídeo */
.perfuracao-eficiente-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Seção Localização e Depoimentos */
.localizacao-depoimentos-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Seção de Localização */
.localizacao-section {
    margin-bottom: 80px;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Informações de Localização */
.localizacao-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.localizacao-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.localizacao-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.localizacao-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.localizacao-item-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #333;
    margin: 0;
}

.localizacao-item-info {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mapa */
.localizacao-mapa {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapa-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mapa-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Seção de Depoimentos */
.depoimentos-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.depoimentos-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.depoimentos-section .container {
    position: relative;
    z-index: 2;
}

/* Estilos para página de Serviços */

/* Hero Serviços */
.hero-servicos {
    background: linear-gradient(135deg, #023A8D 0%, #1e5bb8 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-servicos::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="water" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 Q15,10 10,20 Q5,10 10,0" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23water)"/></svg>');
    opacity: 0.3;
}

.hero-servicos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-servicos-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-servicos-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-servicos-highlight {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 15px 25px;
    display: inline-block;
    margin-top: 20px;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFC107;
}

/* Seção Serviços Principais */
.servicos-principais {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.servicos-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #023A8D;
    margin-bottom: 20px;
}

.servicos-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Cards de Serviços */
.servico-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #023A8D, #FFC107);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #023A8D, #1e5bb8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    transform: scale(1.1);
}

.servico-icon svg {
    color: white;
    transition: all 0.3s ease;
}

.servico-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.servico-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.servico-features {
    list-style: none;
    margin-bottom: 25px;
}

.servico-features li {
    color: #000;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
}

.servico-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: bold;
    font-size: 1rem;
}

.servico-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.servico-tag {
    background: linear-gradient(135deg, #000, #333);
    color: #FFC107;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Seção Diferenciais */
.diferenciais {
    padding: 80px 0;
    background: white;
}

.diferenciais-content {
    text-align: center;
}

.diferenciais-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #023A8D;
    margin-bottom: 50px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.diferencial-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.diferencial-item:hover .diferencial-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

.diferencial-icon svg {
    color: white;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.diferencial-item p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsividade da página Sobre */
@media (max-width: 768px) {
    .hero-sobre {
        padding: 100px 0 60px;
    }
    
    .hero-sobre-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .sobre-content {
        padding: 60px 0;
    }
    
    .content-placeholder {
        padding: 40px 15px;
    }
    
    .perfuracao-section {
        padding: 60px 0;
    }
    
    .sobre-image-section {
        padding: 40px 0;
    }
    
    .sobre-image-container {
        margin: 0 20px;
    }
    
    .perfuracao-eficiente-section {
        padding: 60px 0;
    }
    
    .perfuracao-eficiente-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .perfuracao-eficiente-text {
        padding-right: 0;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .localizacao-depoimentos-section {
        padding: 60px 0;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .localizacao-info {
        padding-right: 0;
    }
    
    .localizacao-section {
        margin-bottom: 60px;
    }
    
    .depoimentos-section {
        padding: 40px 20px;
    }
    
    .perfuracao-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .perfuracao-title-column {
        justify-content: center;
    }
    
    .perfuracao-title {
        text-align: center;
    }
    
    .perfuracao-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-item {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-sobre {
        padding: 80px 0 40px;
    }
    
    .hero-sobre-content {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .sobre-content {
        padding: 40px 0;
    }
    
    .content-placeholder {
        padding: 30px 10px;
    }
    
    .perfuracao-section {
        padding: 40px 0;
    }
    
    .sobre-image-section {
        padding: 30px 0;
    }
    
    .sobre-image-container {
        margin: 0 15px;
        border-radius: 10px;
    }
    
    .perfuracao-eficiente-section {
        padding: 40px 0;
    }
    
    .perfuracao-eficiente-content {
        gap: 30px;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    .localizacao-depoimentos-section {
        padding: 40px 0;
    }
    
    .localizacao-content {
        gap: 30px;
    }
    
    .localizacao-section {
        margin-bottom: 40px;
    }
    
    .depoimentos-section {
        padding: 30px 15px;
    }
    
    .perfuracao-content {
        gap: 30px;
    }
    
    .perfuracao-content-column {
        gap: 30px;
    }
    
    .perfuracao-stats {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
}

/* Responsividade da página Serviços */
@media (max-width: 768px) {
    .hero-servicos {
        padding: 100px 0 60px;
    }
    
    .hero-servicos-title {
        font-size: 2.5rem;
    }
    
    .hero-servicos-subtitle {
        font-size: 1.1rem;
    }
    
    .servicos-principais {
        padding: 60px 0;
    }
    
    .servicos-title {
        font-size: 2.2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .servico-card {
        padding: 30px 20px;
    }
    
    .servico-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .servico-title {
        font-size: 1.3rem;
    }
    
    .diferenciais {
        padding: 60px 0;
    }
    
    .diferenciais-title {
        font-size: 2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .diferencial-item {
        padding: 25px 15px;
    }
    
    .diferencial-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .diferencial-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-servicos {
        padding: 80px 0 40px;
    }
    
    .hero-servicos-title {
        font-size: 2rem;
    }
    
    .hero-servicos-subtitle {
        font-size: 1rem;
    }
    
    .hero-servicos-highlight {
        padding: 12px 20px;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .servicos-principais {
        padding: 40px 0;
    }
    
    .servicos-title {
        font-size: 1.8rem;
    }
}

/* ===== ESTILOS PÁGINA PROJETOS ===== */

/* Hero Projetos */
.hero-projetos {
    background: linear-gradient(135deg, #023A8D 0%, #1a4ba3 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-projetos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../hero.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-projetos-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-projetos-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-projetos-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.5;
}

/* Seção Introdução */
.projetos-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    text-align: left;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #023A8D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #F7931E;
}

.feature-icon {
    color: #F7931E;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #023A8D;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* Seção Galeria */
.projetos-galeria {
    padding: 80px 0;
    background-color: white;
}

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

.galeria-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #023A8D;
    margin-bottom: 20px;
}

.galeria-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
}

.galeria-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-img {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(2, 58, 141, 0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.galeria-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Seção Vídeos */
.projetos-videos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.videos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #023A8D;
    margin-bottom: 20px;
}

.videos-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-horizontal {
    max-width: 100%;
}

.video-vertical {
    max-width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-horizontal .video-wrapper {
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-vertical .video-wrapper {
    padding-bottom: 177.78%; /* 9:16 aspect ratio (16/9 = 1.7778) */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção Call to Action */
.projetos-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #023A8D 0%, #1a4ba3 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #F7931E;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #F7931E;
}

.btn-primary:hover {
    background-color: transparent;
    color: #F7931E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #023A8D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsividade para Projetos */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .video-horizontal {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-projetos {
        padding: 100px 0 60px;
    }
    
    .hero-projetos-title {
        font-size: 2.5rem;
    }
    
    .hero-projetos-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .galeria-title,
    .videos-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-horizontal,
    .video-vertical {
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-projetos-title {
        font-size: 2rem;
    }
    
    .intro-title,
    .galeria-title,
    .videos-title,
    .cta-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .video-info {
        padding: 20px;
    }
}
    
    .servicos-subtitle {
        font-size: 1rem;
    }
    
    .servicos-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .servico-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .servico-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .servico-title {
        font-size: 1.2rem;
    }
    
    .servico-description {
        font-size: 0.9rem;
    }
    
    .servico-features li {
        font-size: 0.9rem;
    }
    
    .servico-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .diferenciais {
        padding: 40px 0;
    }
    
    .diferenciais-title {
        font-size: 1.8rem;
    }
    
    .diferenciais-grid {
        gap: 25px;
        margin-top: 30px;
    }
    
    .diferencial-item {
        padding: 20px 10px;
    }
    
    .diferencial-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .diferencial-item h3 {
        font-size: 1.1rem;
    }
    
    .diferencial-item p {
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE CONTATO ===== */

/* Hero da página de contato */
.hero-contato {
    background: linear-gradient(135deg, #023A8D 0%, #1e5bb8 100%);
    padding: 200px 0 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-contato::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-contato-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-contato-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-contato-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Botões de contato direto */
.contact-buttons {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-email {
    background: linear-gradient(135deg, #F7931E 0%, #e67e22 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.3);
    border: none;
    cursor: pointer;
}

.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #F7931E 100%);
}

/* Seção de localização específica da página contato */
.localizacao-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.localizacao-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.localizacao-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
}

.localizacao-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.localizacao-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.localizacao-item-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #333;
    margin: 0;
}

.localizacao-item-info {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.localizacao-mapa {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mapa-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

/* Seção CTA da página contato */
.contato-cta {
    background: linear-gradient(135deg, #023A8D 0%, #1e5bb8 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contato-cta::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade para página de contato */
@media (max-width: 768px) {
    .hero-contato {
        padding: 160px 0 100px;
        margin-top: 40px;
    }
    
    .hero-contato-content {
        padding: 0 30px;
    }
    
    .hero-contato-title {
        margin-bottom: 35px;
    }
    
    .hero-contato-subtitle {
        margin-bottom: 40px;
    }
    
    .contact-buttons {
        margin-top: 45px;
        gap: 20px;
    }
    
    .btn-whatsapp,
    .btn-email {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .localizacao-section {
        padding: 80px 0;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .localizacao-details {
        align-items: center;
    }
    
    .contato-cta {
        padding: 80px 0;
    }
    
    .cta-buttons {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .hero-contato {
        padding: 140px 0 80px;
        margin-top: 30px;
    }
    
    .hero-contato-content {
        padding: 0 20px;
    }
    
    .hero-contato-title {
        margin-bottom: 30px;
    }
    
    .hero-contato-subtitle {
        margin-bottom: 35px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }
    
    .btn-whatsapp,
    .btn-email {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 35px 25px;
    }
    
    .contact-form {
        gap: 25px;
    }
    
    .localizacao-section {
        padding: 60px 0;
    }
    
    .localizacao-content {
        gap: 40px;
    }
    
    .localizacao-title {
        margin-bottom: 25px;
    }
    
    .localizacao-description {
        margin-bottom: 40px;
    }
    
    .localizacao-details {
        gap: 30px;
    }
    
    .contato-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        margin-bottom: 25px;
    }
    
    .cta-description {
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
