
/* 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 GENERALES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #280331;
    --secondary-color: #4776E6;
    --accent-color: #eb0505;
    --tercer-color: #f3c408;
    --cuarto-color: #089711;
    --font: #000;
    --back: #fff;
}

body {
    background-color: var(--back); 
    color: var(--font)
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
    border-bottom: 5px solid transparent;
    border-image: linear-gradient(45deg, #fd1d1d, #f6c502, #089711);
    border-image-slice: 1;
}

.header-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px var(--back);
}


.header-container.scrolled .nav a {
    color: var(--primary-color);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-svg {
    width: 40px;
    height: 40px;
    background-color: var(--back);
    border-radius: 50px;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s, background-color 0.3s;
}

.nav a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}
.title{
    text-align: center;
    margin-bottom: 10px;
}
.footer {
    background: linear-gradient(135deg, #5c0202, #4776E6);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.footer-section p {
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

   /* Efecto navideño 
   .snowflake {
    position: fixed;
    top: -10px;
    color: white;
    background-color: rgba(255, 0, 0, 0.483);
    font-size: 1em;
    text-shadow: 0 0 5px #000;
    z-index: 1000;
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
}
    */

@keyframes snowfall {
  0% {
    transform: translateY(-10px) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg); 
  }
}


/* FINALIZA GENERALES  -----------  */




/* -----------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/eventos/feliz1.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) {
    
}

