/*:root {
    --foxb2c-primary: #4494D3;
    --foxb2c-secondary: #333333;
    --foxb2c-accent: #00d0c7;
    --foxb2c-border: #dee2e6;
    --foxb2c-success: #28a745;
}*/

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--foxb2c-secondary);
    line-height: 1.6;
    background: #f5f7fa;
}

/* Main Container */
.content-container {
    background: var(--foxb2c-box-claro);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--foxb2c-primary) 0%, #5ba3db 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px 8px 0 0;
    margin: -2rem -2rem 2rem -2rem;
}

.page-header h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

/* Content Section */
.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.5rem;
    color: var(--foxb2c-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--foxb2c-accent);
    padding-bottom: 0.5rem;
}

.content-section p {
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--txt-cor-texto);
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--foxb2c-accent);
    background: rgba(0, 208, 199, 0.1);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section img {
    max-width: 200px;
    height: auto;
}

/* Image Gallery */
.image-gallery {
    margin-bottom: 3rem;
}

.gallery-item {
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--foxb2c-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--txt-cor-texto);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item.google {
    position: relative;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-logo {
    max-width: 100px;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Statistics Section */
.icon-section {
    background: var(--foxb2c-accent);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.icon-section .stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.icon-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--foxb2c-primary);
    margin-bottom: 0.5rem;
}

.icon-section .stat-label {
    font-size: 1.1rem;
    color: var(--txt-cor-texto);
    font-weight: 500;
}

.icon-section .stat-icon {
    font-size: 3rem;
    color: var(--foxb2c-primary);
    margin-bottom: 1rem;
}


/* Partners Section */
.partners-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.partners-section h3 {
    text-align: center;
    color: var(--foxb2c-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partners-logos img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 2rem 0;
}

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

/* Social Section */
.social-section {
    background: var(--foxb2c-gradient);
    color: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.social-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Video Gallery Grid Container */
.videos-gallery-section {
    background: var(--foxb2c-gradient);
    color: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.videos-item {
    width: 100%;
}

.videos-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foxb2c-neutro);
    margin-bottom: 1rem;
}

.videos-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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


/* Mission Vision Values Section */
.mvv-section {
    background: var(--foxb2c-box-medio);
    border: 1px solid var(--foxb2c-border-secondary);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.mvv-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foxb2c-primary);
    margin-bottom: 1.5rem;
}

.mvv-item {
    margin-bottom: 2rem;
}

.mvv-item:last-child {
    margin-bottom: 0;
}

.mvv-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--foxb2c-secondary);
    margin-bottom: 0.75rem;
}

.mvv-item p {
    margin: 0;
    color: var(--txt-cor-texto);
}

.mvv-item li {
    color: var(--txt-cor-texto);
}

/* Company Data Section */
.company-data {
    background: var(--foxb2c-box-medio);
    border: 1px solid var(--foxb2c-border-secondary);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.company-data h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foxb2c-primary);
    margin-bottom: 1.5rem;
}

.company-data p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--txt-cor-texto);
}

.company-data strong {
    color: var(--txt-cor-texto);
    display: inline-block;
    min-width: 200px;
}

/* Steps Section */
.steps-section {
    background: var(--foxb2c-neutro);
    padding: 3rem 0;
    margin-top: 3rem;
}

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

.steps-header h2 {
    color: var(--foxb2c-primary);
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.step-card {
    background: var(--foxb2c-box-claro);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--foxb2c-primary) 0%, var(--foxb2c-secondary) 100%);
    border-radius: 50%;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-number {
    background: var(--foxb2c-primary);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foxb2c-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--txt-cor-texto);
    text-align: center;
}

/* Partners Gallery */
.partners-gallery {
    background: var(--foxb2c-box-claro);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.partners-gallery h3 {
    text-align: center;
    color: var(--foxb2c-secondary);
    margin-bottom: 2rem;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logos img {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Alert Box */
.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.info-box h4 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.info-box p {
    color: #856404;
    margin-bottom: 0;
}

/* Contact Form Sidebar */
.contact-sidebar {
    background: var(--foxb2c-box-claro);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}


/* Contact Info */

.contact-info {
    background: var(--foxb2c-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info .contact-item,
.contact-info strong,
.contact-info h3 {
    color: var(--foxb2c-neutro);
}

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

.contact-info .contact-item i {
    font-size: 1.5rem;
    color: var(--foxb2c-neutro);
    width: 30px;
}

.contact-info .contact-item a {
    color: var(--foxb2c-neutro);
    text-decoration: none;
}

.contact-info .contact-item a:hover {
    color: var(--foxb2c-primary);
}


/* Contact Form */
.contact-form {
    background: var(--foxb2c-box-claro);
    border: 1px solid var(--foxb2c-neutro);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.contact-form h3 {
    color: var(--foxb2c-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-size: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--txt-cor-texto);
    margin-bottom: 0.5rem;
}

.form-control,
.form-control:focus {
    border: 2px solid var(--foxb2c-border);
    border-radius: 5px;
    padding: 0.75rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--foxb2c-primary);
    box-shadow: 0 0 0 3px rgba(68, 148, 211, 0.1);
    outline: none;
}

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

.recaptcha-wrapper {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.btn-submit {
    width: 100%;
    background: var(--foxb2c-success);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    display: none; /* Initially hidden, shown after reCAPTCHA */
}

.btn-submit:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert Messages */
.alert-custom {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--foxb2c-secondary);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form {
        position: static;
        margin-top: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }

    .mvv-section,
    .company-data,
    .social-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .content-container {
        padding: 1rem;
    }
    
    .page-header {
        padding: 1.5rem;
        margin: -1rem -1rem 1.5rem -1rem;
    }
    
    .page-header h1 {
        font-size: 1.25rem;
    }
    
    .logo-section {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .logo-section img {
        max-width: 150px;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .partners-logos {
        justify-content: center;
    }
    
    .partners-logos img {
        max-width: 80px;
    }

    .company-data strong {
        display: block;
        min-width: auto;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}