/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #0f1419;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 50px; /* Ajustá según tu logo */
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

/* Si querés que sea responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

.nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-link:hover,
.nav-link.active {
    border-bottom: 3px solid #ff8c00;
    color: #fff;
}

.language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.language img {
    display: block;
}

.dropdown-arrow {
    color: #fff;
    font-size: 0.8rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 300;
}

.text-orange {
    color: #ff8c00;
    font-weight: bold;
}

.text-blue {
    color: #2196F3;
}

.btn-blue {
    display: inline-block;
    padding: 1rem 3rem;
    background: #2196F3;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-blue:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

/* ============================================
   SECCIONES DE CONTENIDO
   ============================================ */

.section-content {
    padding: 5rem 2rem;
    background: #1a2332;
}

.section-content.bg-dark {
    background: #0f1419;
}

.container-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.container-section.reverse {
    direction: rtl;
}

.container-section.reverse > * {
    direction: ltr;
}

.content-left h3,
.content-right h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 300;
}

.content-left p,
.content-right p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.content-right img,
.content-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ============================================
   CARRUSEL
   ============================================ */

.carousel {
    background: #1a2332;
    padding: 3rem 0;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 140, 0, 1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    text-align: center;
    margin-top: 1.5rem;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ff8c00;
    transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #ff8c00;
    padding: 3rem 0;
    color: #1a2332;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a2332;
}

.footer-column a {
    color: #1a2332;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.7;
}

/* Iconos en el footer */
.footer-column a i {
    margin-right: 0.5rem;
    color: #1a2332;
}

/* ICONOS SOCIALES - COLORES DE MARCA */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: #1a2332;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Facebook - Color azul de marca */
.social-icons a[href*="facebook"]:hover {
    background: #1877F2;
    color: #fff;
    transform: scale(1.1);
}

/* Instagram - Gradiente de marca */
.social-icons a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    transform: scale(1.1);
}

/* FOOTER BOTTOM - TEXTO EN BLANCO Y SIN LINKS */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #fff; /* BLANCO */
}

/* ELIMINAR LINKS DEL FOOTER */
.footer-links {
    display: none; /* OCULTAR LINKS */
}

/* ============================================
   PÁGINA CONOCENOS - VERSIÓN ORIGINAL
   ============================================ */

/* HERO CON IMAGEN Y TEXTO SUPERPUESTO */
.hero-conocenos {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-conocenos-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-conocenos-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-conocenos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.85) 40%, rgba(26, 35, 50, 0.3) 100%);
    z-index: 2;
}

.hero-conocenos-contenido {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 4rem 6rem;
    margin-left: 0;
}

.hero-titulo {
    font-size: 5.5rem;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.texto-naranja {
    color: #ff8c00;
    display: block;
}

.hero-parrafos p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 1.8rem;
}

/* SECCIÓN QUIENES SOMOS */
.section-quienes {
    background: #1a2332;
    padding: 6rem 0;
}

.quienes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 6rem;
    align-items: center;
}

.quienes-titulo {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.quienes-parrafos p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 2rem;
}

.quienes-imagen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* SECCIÓN NEWSLETTER */
.section-newsletter {
    background: #0f1419;
    padding: 6rem 0;
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 6rem;
    align-items: center;
}

.newsletter-titulo {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.newsletter-subtitulo {
    font-size: 1.3rem;
    color: #ff8c00;
    margin-bottom: 3rem;
}

.form-newsletter {
    max-width: 500px;
}

.form-newsletter label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.form-newsletter input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.btn-enviar {
    padding: 1.2rem 3rem;
    background: #ff8c00;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #e67e00;
    transform: translateY(-3px);
}

.newsletter-derecha img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ============================================
   RESPONSIVE CONOCENOS
   ============================================ */

@media (max-width: 1200px) {
    .hero-conocenos-contenido {
        max-width: 550px;
        padding: 3rem 4rem;
    }
    
    .hero-titulo {
        font-size: 4.5rem;
    }
    
    .quienes-container,
    .newsletter-container {
        grid-template-columns: 1fr;
        padding: 0 3rem;
        gap: 4rem;
    }
    
    .quienes-imagen,
    .newsletter-derecha {
        justify-self: center;
    }
}

@media (max-width: 968px) {
    .hero-conocenos {
        min-height: auto;
    }
    
    .hero-conocenos-overlay {
        background: rgba(26, 35, 50, 0.9);
    }
    
    .hero-conocenos-contenido {
        max-width: 100%;
        padding: 3rem 2rem;
    }
    
    .hero-titulo {
        font-size: 3.5rem;
    }
    
    .hero-parrafos p {
        font-size: 1rem;
    }
    
    .quienes-container,
    .newsletter-container {
        padding: 0 2rem;
        gap: 3rem;
    }
    
    .quienes-titulo {
        font-size: 3rem;
        text-align: center;
    }
    
    .quienes-parrafos p {
        text-align: center;
    }
    
    .newsletter-titulo {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .newsletter-subtitulo {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-conocenos-contenido {
        padding: 2rem 1.5rem;
    }
    
    .hero-titulo {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-parrafos p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .quienes-container,
    .newsletter-container {
        padding: 0 1.5rem;
    }
    
    .quienes-titulo,
    .newsletter-titulo {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-titulo {
        font-size: 2rem;
    }
    
    .hero-parrafos p {
        font-size: 0.9rem;
    }
}
/* ============================================
   ESTILOS PARA PRODUCTOS.PHP
   ============================================ */

/* HERO PRODUCTOS */
.hero-productos {
    background: #1a2332;
    padding: 0;
}

.hero-productos .hero-image {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-productos .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER PRODUCTOS */
.container-productos {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.title-center.white {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.subtitle-center {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}
/* TÍTULO PRODUCTOS */
.section-titulo-productos {
    background: #1a2332;
    padding: 4rem 2rem;
}

.container-titulo-productos {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.titulo-productos-grande {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.texto-naranja {
    color: #ff8c00;
}

.subtitulo-productos {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .titulo-productos-grande {
        font-size: 2.5rem;
    }
}
/* SECCIÓN CATÁLOGOS - LAYOUT HORIZONTAL */
.section-catalogos {
    background: #0f1419;
    padding: 5rem 2rem;
}

.catalogos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.catalogo-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    background: #1a2332;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogo-item:hover {
   /* transform: translateX(10px);*/
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.catalogo-imagen {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.catalogo-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* .catalogo-item:hover .catalogo-imagen img {
   // transform: scale(1.05);
} */

.catalogo-info {
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.catalogo-titulo {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.catalogo-subtitulo {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.catalogo-subtitulo.importacion {
    color: #ff8c00;
}

.catalogo-subtitulo.nacional {
    color: #2196F3;
}

.catalogo-descripcion {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-descarga {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-importacion {
    background: #ff8c00;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn-importacion:hover {
    background: #e67e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.btn-fabricacion {
    background: #2196F3;
    color: #fff;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-fabricacion:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
}

.icon-download {
    width: 24px;
    height: 24px;
}

/* SECCIÓN CONSULTA PRODUCTOS */
.section-consulta-productos {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(15, 20, 25, 0.85)), 
                url('../images/productos-hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.consulta-content {
    max-width: 600px;
    text-align: left;
}

.consulta-titulo {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.texto-consulta {
    color: #ff8c00;
}

.consulta-subtitulo {
    font-size: 1.3rem;
    color: #ff8c00;
    margin-bottom: 3rem;
}

.form-consulta label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.form-consulta input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.btn-enviar-productos {
    padding: 1rem 3rem;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar-productos:hover {
    background: #1976D2;
    transform: translateY(-3px);
}

/* RESPONSIVE PRODUCTOS */
@media (max-width: 968px) {
    .catalogo-item {
        grid-template-columns: 1fr;
    }

    .catalogo-imagen {
        min-height: 400px;
    }

    .catalogo-info {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .catalogo-titulo {
        font-size: 2rem;
    }

    .catalogo-subtitulo {
        font-size: 1.5rem;
    }

    .consulta-titulo {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .catalogo-titulo {
        font-size: 1.5rem;
    }

    .catalogo-descripcion {
        font-size: 1rem;
    }
}

/* ============================================
   PÁGINA DE CONTACTO
   ============================================ */

/* SECCIÓN REDES SOCIALES */
.contacto-hero {
    background: #1a2332;
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contacto-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contacto-left {
    padding: 2rem;
}

.contacto-title {
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-weight: 400;
}

.social-buttons-large {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.instagram-btn {
    background: #2196F3;
}

.instagram-btn:hover {
    background: #1976D2;
    transform: translateX(10px);
}

.facebook-btn {
    background: #2196F3;
}

.facebook-btn:hover {
    background: #1976D2;
    transform: translateX(10px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    font-size: 2rem;
}

.contacto-right img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
}

/* SECCIÓN WHATSAPP */
.whatsapp-section {
    background: #0f1419;
    padding: 4rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.whatsapp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.whatsapp-left {
    padding: 2rem;
}

.whatsapp-title {
    font-size: 4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-weight: 400;
}

.btn-whatsapp {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: #2196F3;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1976D2;
    transform: scale(1.05);
}

.whatsapp-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

/* RESPONSIVE CONTACTO */
@media (max-width: 968px) {
    .contacto-container,
    .whatsapp-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contacto-title,
    .whatsapp-title {
        font-size: 2.5rem;
    }
    
    .social-buttons-large {
        max-width: 100%;
    }
    
    .contacto-left,
    .whatsapp-left {
        padding: 1rem;
    }
    
    .contacto-right,
    .whatsapp-right {
        order: -1;
    }
}

@media (max-width: 480px) {
    .contacto-title,
    .whatsapp-title {
        font-size: 2rem;
    }
    
    .btn-social {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
/* ============================================
   FORMULARIO DE CONTACTO
   ============================================ */

/* Alertas */
.alert {
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 8px;
    font-size: 1.1rem;
    text-align: center;
}

.alert-success {
    background: #4CAF50;
    color: #fff;
}

.alert-error {
    background: #f44336;
    color: #fff;
}

/* Sección Formulario */
.contacto-form-section {
    background: #1a2332;
    padding: 5rem 2rem;
}

.contacto-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-titulo {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.form-subtitulo {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    text-align: center;
}

.form-contacto {
    background: #0f1419;
    padding: 3rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-enviar-contacto {
    width: 100%;
    padding: 1.2rem 3rem;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar-contacto:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

@media (max-width: 768px) {
    .form-titulo {
        font-size: 2.5rem;
    }
    
    .form-contacto {
        padding: 2rem 1.5rem;
    }
}