/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: #1a063d;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #f97316;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 6, 61, 0.8), rgba(26, 6, 61, 0.8)), url('../images/hero_galpao.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.hero-secondary {
    background: linear-gradient(rgba(26, 6, 61, 0.9), rgba(26, 6, 61, 0.9)), url('../images/hero_galpao.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

.btn-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1a063d;
}

.btn-outline {
    background: transparent;
    color: #f97316;
    border-color: #f97316;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

.btn-outline-dark {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-dark:hover {
    background: white;
    color: #1a063d;
}

.btn-back {
    background: #f97316;
    color: white;
    border-color: #f97316;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: #ea580c;
    border-color: #ea580c;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a063d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: #1a063d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MVV Section - Estilo da Segunda Imagem */
.mvv-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.mvv-horizontal {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 363px);
    gap: 40px;
    padding: 0 40px;
    justify-content: center;
}

.mvv-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 363px;
    height: 576px;
    position: relative;
    border: 1px solid #f1f5f9;
    box-sizing: border-box;
}

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

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
}

.mvv-mission::before {
    background: #f97316;
}

.mvv-vision::before {
    background: #3b82f6;
}

.mvv-values::before {
    background: #ef4444;
}

.mvv-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.mvv-mission .mvv-icon-circle {
    background: #f97316;
}

.mvv-vision .mvv-icon-circle {
    background: #3b82f6;
}

.mvv-values .mvv-icon-circle {
    background: #ef4444;
}

.mvv-card h4 {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    flex-shrink: 0;
}

.mvv-description {
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-shrink: 0;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mvv-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.mvv-list li i {
    color: #10b981;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
    .mvv-horizontal {
        grid-template-columns: repeat(3, 320px);
        gap: 30px;
        padding: 0 30px;
    }
    
    .mvv-card {
        width: 320px;
        height: 500px;
        padding: 35px 25px;
    }
}

@media (max-width: 992px) {
    .mvv-horizontal {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .mvv-card {
        width: 100%;
        height: 450px;
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .mvv-section {
        padding: 30px 0;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .mvv-horizontal {
        padding: 0 20px;
        gap: 25px;
        max-width: 350px;
    }
    
    .mvv-card {
        width: 100%;
        height: 400px;
        padding: 30px 25px;
    }
    
    .mvv-card h4 {
        font-size: 1.6rem;
    }
    
    .mvv-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

.mvv-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
}

.mvv-mission .mvv-icon {
    background: #f97316;
}

.mvv-vision .mvv-icon {
    background: #3b82f6;
}

.mvv-values .mvv-icon {
    background: #ef4444;
}

.mvv-commitment .mvv-icon {
    background: #10b981;
}

.mvv-card h4 {
    color: #1a063d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mvv-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1a063d;
    color: white;
}

.services .section-header h2 {
    color: white;
}

.services .section-header p {
    color: #e5e7eb;
}

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

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

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

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4b5563;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-card li {
    padding: 5px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

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

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

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

.feature p {
    color: #4b5563;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a063d;
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: #e5e7eb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f97316;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a063d;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

/* CTA Destacada */
.cta-destacada {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a063d 0%, #2d1b69 100%);
    color: white;
    text-align: center;
}

.cta-destacada h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4,
.footer-address h4 {
    color: #f97316;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #f97316;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* MVV Responsivo */
    .mvv-grid-4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mvv-card {
        padding: 20px;
    }
    
    .mvv-card h4 {
        font-size: 16px;
    }
    
    .mvv-card p {
        font-size: 13px;
    }
    
    .mvv-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mvv-card {
        padding: 15px;
    }
    
    .mvv-card h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .mvv-card p {
        font-size: 12px;
    }
    
    .mvv-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}



/* WhatsApp Flutuante Pulsante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float i {
    /* Ícone já centralizado pelo flex */
}

/* Animação de pulso para WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        margin-top: 13px;
    }
}

