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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #004A99;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo i {
    font-size: 2rem;
    color: #1565C0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #004A99;
    background: rgba(0, 74, 153, 0.1);
}

.nav-cta .btn-primary {
    background: linear-gradient(135deg, #004A99, #1565C0);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, 0.4);
}

/* Botão Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #004A99;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: rgba(0, 74, 153, 0.1);
    color: #1565C0;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .header {
        position: relative;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: 1rem;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo i {
        font-size: 1.75rem;
    }
    
    .nav-links {
        padding: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.125rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #004A99, #1565C0);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #004A99;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #004A99;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #004A99;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #004A99;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.image-placeholder {
    background: linear-gradient(135deg, #1565C0, #004A99);
    width: 400px;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(21, 101, 192, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

/* Certificações */
.certifications {
    background: #f8fafc;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004A99, #1565C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.cert-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Serviços */
.services {
    background: white;
}

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

.service-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #1565C0;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #004A99, #1565C0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #33E1C4;
    font-weight: bold;
}

/* Depoimentos */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-card p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #004A99, #1565C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.25rem;
}

.author-info h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Por que nos escolher */
.why-choose {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #33E1C4, #00C4B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Galeria de Fotos e Vídeos */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.gallery-wrapper {
    margin-bottom: 80px;
}

.gallery-wrapper:last-child {
    margin-bottom: 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-header h2 i {
    color: #004A99;
    font-size: 2rem;
}

.gallery-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.photo-slider,
.video-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.slide-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 153, 0.9), rgba(21, 101, 192, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

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

.slide-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.slide-overlay span {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.slide-caption {
    padding: 2rem;
    text-align: center;
}

.slide-caption h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    color: #64748b;
    font-size: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: #004A99;
    font-size: 1.25rem;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #004A99, #1565C0);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 74, 153, 0.4);
}

.slider-btn.prev-btn {
    left: 0;
}

.slider-btn.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: #004A99;
    width: 32px;
    border-radius: 6px;
    border-color: #1565C0;
}

/* Antes e Depois Slider */
.before-after-slide {
    padding: 0;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 500px;
    position: relative;
}

.before-after-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #004A99, #1565C0);
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 74, 153, 0.5);
}

.before-after-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: #f0f0f0;
    min-height: 100%;
}

.before-after-image:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.before-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.after-label {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Galeria de Depoimentos em Fotos */
.testimonial-photos {
    margin-top: 80px;
}

.testimonial-photo-item {
    padding: 0;
}

.testimonial-photo-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
}

.testimonial-photo-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    display: block;
    background: #f8fafc;
}

.testimonial-photo-item:hover .testimonial-photo-image img {
    transform: scale(1.02);
}

.testimonial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    z-index: 2;
}

.testimonial-badge i {
    font-size: 0.875rem;
}

.testimonial-photo-content {
    padding: 1.5rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: #004A99;
    opacity: 0.3;
    margin-bottom: 0.5rem;
    display: block;
}

.testimonial-quote p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 2px solid #e2e8f0;
    padding-top: 1rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.8rem;
}

/* Vídeo Slider */
.video-gallery {
    margin-top: 80px;
}

.video-item {
    min-width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
    border-radius: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

.video-wrapper video {
    background: #000;
}

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

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

/* Animações */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsividade da Galeria */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .gallery-header h2 i {
        font-size: 1.5rem;
    }

    .photo-slider,
    .video-slider {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-image,
    .video-wrapper {
        height: 350px;
    }

    .slide-caption {
        padding: 1.5rem;
    }

    .slide-caption h4 {
        font-size: 1.25rem;
    }

    .gallery-wrapper {
        margin-bottom: 60px;
    }

    .video-gallery,
    .testimonial-photos {
        margin-top: 60px;
    }

    .before-after-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .before-after-container::before {
        display: none;
    }

    .before-after-image {
        height: 300px;
    }

    .testimonial-photo-image {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-header {
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .gallery-header h2 {
        font-size: 1.75rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .photo-slider,
    .video-slider {
        padding: 0 45px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev-btn {
        left: 5px;
    }
    
    .slider-btn.next-btn {
        right: 5px;
    }

    .slide-image,
    .video-wrapper {
        height: 300px;
    }
    
    .slide-caption {
        padding: 1.25rem;
    }
    
    .slide-caption h4 {
        font-size: 1.125rem;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }

    .slide-overlay i {
        font-size: 2.5rem;
    }

    .slide-overlay span {
        font-size: 1.125rem;
    }

    .play-overlay i {
        font-size: 3.5rem;
    }

    .before-after-image {
        height: 280px;
    }

    .image-label {
        top: 12px;
        left: 12px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .testimonial-photo-image {
        height: 450px;
    }

    .testimonial-badge {
        top: 12px;
        right: 12px;
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .slider-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 28px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #004A99, #1565C0);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: white;
    color: #004A99;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.cta-content .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Contato */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004A99, #1565C0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004A99;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #33E1C4;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #33E1C4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1.05rem;
        text-align: center;
    }
    
    .hero-main-image {
        max-width: 100%;
        width: 100%;
        border-radius: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.125rem;
        font-size: 1rem;
    }
    
    .cert-grid,
    .services-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .testimonial-card,
    .cert-item {
        padding: 2rem 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header {
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        justify-content: center;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-overlay {
        display: none !important;
    }
    
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }
    
    .hero-stats {
        gap: 1.25rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        gap: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .testimonial-card,
    .cert-item,
    .feature {
        padding: 1.75rem 1.25rem;
    }
    
    .service-card h3,
    .cert-item h3,
    .feature h3 {
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: 1.75rem 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cert-item,
.service-card,
.testimonial-card,
.feature {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave para links internos */
html {
    scroll-padding-top: 0;
}

@media (min-width: 769px) {
    html {
        scroll-padding-top: 100px;
    }
}

/* Melhorias adicionais para mobile */
@media (max-width: 768px) {
    /* Garantir tamanho mínimo para toque */
    button,
    .btn-primary,
    .btn-secondary,
    a.btn-primary,
    a.btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Melhor espaçamento entre seções */
    .gallery-wrapper {
        margin-bottom: 50px;
    }
    
    /* Cards com melhor espaçamento interno */
    .service-card ul {
        margin-top: 1rem;
    }
    
    .service-card li {
        margin-bottom: 0.75rem;
        padding-left: 1.25rem;
    }
    
    /* Melhor legibilidade */
    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.875rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes finos para telas muito pequenas */
    .hero-stats {
        width: 100%;
    }
    
    .stat {
        padding: 0.5rem;
    }
    
    /* Melhor espaçamento nos cards */
    .service-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
}
