:root
{
    --primary-color: #02567f;
    --secondary-color: #e01111;
    --text-color: #232830;
    --background-color: #ffffff;
    --border-color: #e5e7eb;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1200&h=400&fit=crop'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}


.logo img {
    width: 30%;    
    
}


.nav-desktop {
    display: none;
    gap: 32px;
}

.nav-desktop a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: #2563eb;
}

.cta-desktop {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #374151;
    transition: color 0.2s;
}

.mobile-menu-btn:hover {
    color: #2563eb;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid #e5e7eb;
    display: none;
    padding: 16px 16px;
}

.mobile-menu.active {
    display: block;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-mobile a:hover {
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.btn-outline:hover {
    background: #eff6ff;
    color: black;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding-top: 25px;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f9fafb 100%);
    padding-bottom: 80px;
    position: relative;
    /* overflow: hidden; */
    height: 100vh; /* Altura máxima da tela */
    

}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sobreposição */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 37, 80, 0.7); /* azul com 50% de opacidade */
    z-index: 1;
}


.hero-content {
    display: grid;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    height: 100vh; /* Altura máxima da tela */
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-primary {
    color: white;
}

.hero-text p {
    font-size: 1rem;
    color: #f5f5f5;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 14px;
    color: white;
}

.hero-image {
    position: relative;
}

.image-container {
    /* background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 16px;
    padding: 32px; */
    transform: rotate(3deg);
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
}

.image-container img {
    border-radius: 8px;
    transform: rotate(-3deg);
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.card-subtitle {
    font-size: 12px;
    color: #6b7280;
}

/* Services Section */
.services {
    position: relative;
    padding: 80px 0;
}

.services-bg {
    position: absolute;
    inset: 0;
    background-image: url('/resoruces/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #bfdbfe;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon.blue {
    background: #3b82f6;
}

.service-icon.green {
    background: #10b981;
}

.service-icon.purple {
    background: #8b5cf6;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 24px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card li {
    display: flex;
    align-items: center;
    color: #374151;
    margin-bottom: 8px;
}

.service-card li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    margin-right: 12px;
}

.benefits {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 32px;
}

.benefits h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 32px;
}

.benefits-grid {
    display: grid;
    gap: 32px;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
}

.benefit h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.benefit p {
    color: #6b7280;
}

/* About Section */
.about {
    position: relative;
    padding: 80px 0;
}

.about-bg {
    position: absolute;
    inset: 0;
    background-image: url('/resoruces/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.about-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 125, 194, 0.95) 0%, rgba(7, 37, 77, 0.95) 100%);
    
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.about-description {
    margin-bottom: 32px;
}

.about-description p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgb(11, 39, 68);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card svg {
    color: #2563eb;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #a0a0a0;
}

.stat-label {
    font-size: 14px;
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-main {
    position: relative;
}

.main-image {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.image-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
}

.image-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-info p {
    font-size: 18px;
    opacity: 0.9;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px #2563eb;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #f9fafb 100%);
}

.testimonials-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.1;
    color: #2563eb;
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.author-name {
    font-weight: 600;
    color: #111827;
}

.author-location {
    font-size: 14px;
    color: #6b7280;
}

.author-service {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
    margin-top: 4px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}

.indicator-value {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

.indicator-label {
    font-size: 14px;
    color: #6b7280;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 80px 0;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    gap: 48px;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.3s;
}

.contact-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card {
    display: flex;
    gap: 16px;
}

.contact-icon {
    background: #eff6ff;
    padding: 12px;
    border-radius: 8px;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

.contact-action {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
}

.hours-card {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 24px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hours-header svg {
    color: #2563eb;
}

.hours-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hours-row span:first-child {
    color: #374151;
}

.hours-row span:last-child {
    font-weight: 500;
    color: #111827;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0 0;
    width: 100%;
}

.footer-content {
   display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo img{
    padding: 8px;
    width: 100%;

}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 12px;
    color: #9ca3af;
}

.footer-company p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    background: #374151;
    padding: 8px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: #2563eb;
}

.footer-services h4,
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-services ul,
.footer-links ul {
    list-style: none;
}

.footer-services li,
.footer-links li {
    margin-bottom: 12px;
}

.footer-services a,
.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-services a:hover,
.footer-links a:hover {
    color: #60a5fa;
}

.footer-contact-info {
    display: grid;
    gap: 16px;
    justify-items: center;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item svg {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    color: #d1d5db;
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (min-width: 640px) {
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .cta-desktop {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }


    .footer-logo {
        justify-content: center;
    }

    .footer-logo img{
        width: 40%;
        height: auto;
    }

    .footer-company,
    .footer-contact {
        flex: 1 1 45%;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-image {
        height: 500px;
    }
}


@media (max-width: 768px) {
    .hero {
        height: auto; /* Ajusta a altura para telas menores */
    }
    
    .services-grid {
        
    }
    
    .benefits-grid {
       
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
