/* Created by
Calbert 72 multisectorial
www.calbert72.com
Contact: +240 222 176 082
Email: info@calbert72.com / cbt72info@gmail.com
©TODOS LOS DERECHOS RESERVADOS 
G-NOB WEB -2023/2025

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* -----------Inicia Estilos de la página CONTACTO */
/* Hero section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/folletos/gnb\ \(8\).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 45%;
    text-align: left;
    padding-right: 2rem;
    margin: 0;
}

.hero-form {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 45%;
    max-width: 400px;
    margin: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 236, 240, 0.95) 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.form-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #d1a804, #fd1d1d);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    background-size: 200% 200%;
    animation: gradientAnimation 5s ease infinite;
}

.form-btn:hover {
    background: linear-gradient(45deg, #3a1c71, #4776E6, #fd1d1d);
}

.form-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Contact section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #171717 100%);
    box-shadow: 0 4px 6px rgba(225, 219, 219, 0.9);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #d1a804, #fd1d1d);
    border-image-slice: 1;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 2rem;
}

.contact-items {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(45deg, #d1a804, #fd1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-text p {
    color: #666;
    line-height: 1.5;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 4px solid;
    border-image: linear-gradient(45deg,  #d1a804, #fd1d1d);
    border-image-slice: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Social media section */
.social-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg,  #d1a804, #fd1d1d);
    color: white;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 2rem;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        flex-direction: column;
        padding-top: 5rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-form {
        width: 90%;
        max-width: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    
}

