﻿
/* --- VARIABLES DE IDENTIDAD VISUAL --- */
:root {
    --ruby-red: #D92458;
    --ruby-red-dark: #b01a45;
    --modern-blue: #004FB6;
    --modern-blue-dark: #003a85;
    --elegant-gray: #343A40;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --whatsapp-green: #25D366; /* Nuevo color para botón flotante */
}

/* --- TIPOGRAFÍA --- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--elegant-gray);
    overflow-x: hidden;
    background-color: #f4f6f9;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Outfit', sans-serif;
}

/* --- NAVBAR BLANCO Y MINIMALISTA (NUEVO) --- */
        .navbar {
            padding: 0.8rem 0;
            background-color: white !important; /* Fondo blanco permanente */
            box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Sombra sutil */
            transition: none; /* Sin transición de color */
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--modern-blue) !important; /* Color corporativo */
            display: flex;
            align-items: center;
        }
        
        .nav-link {
            color: var(--elegant-gray) !important; /* Texto negro/gris oscuro */
            font-weight: 600;
            margin: 0 5px;
            position: relative;
            letter-spacing: 0.3px;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--ruby-red);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after { width: 100%; }
        
        .nav-link:hover, .nav-link.active {
            color: var(--ruby-red) !important;
        }

/* --- MEGA MENU (NUEVO DISEÑO) --- */
.dropdown-menu.mega-menu {
    width: 100%;
    min-width: 600px; /* Ajusta según necesidad */
    padding: 20px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 15px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--elegant-gray);
}

    .mega-menu-item:hover {
        background-color: rgba(0, 79, 182, 0.05);
        transform: translateX(5px);
    }

.mega-menu-icon {
    width: 40px;
    height: 40px;
    background: rgba(217, 36, 88, 0.1);
    color: var(--ruby-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.mega-menu-item:hover .mega-menu-icon {
    background: var(--ruby-red);
    color: white;
}

.mega-menu-content h6 {
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--modern-blue);
}

.mega-menu-content p {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.3;
}

/* --- MENÚ MÓVIL MEJORADO --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--modern-blue) 0%, #002a5c 100%);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1.5rem;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        backdrop-filter: blur(10px);
        max-height: 80vh; /* Limitar altura */
        overflow-y: auto; /* Scroll si es necesario */
    }

    .nav-link {
        color: white !important;
        font-size: 1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

        .nav-link:hover::after {
            width: 50px;
        }

    .btn-ruby {
        width: 100%;
        margin-top: 15px;
    }

    /* Ajustes Mega Menu Movil */
    .dropdown-menu.mega-menu {
        position: static;
        width: 100%;
        min-width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .mega-menu-item:hover {
            background: transparent;
            transform: none;
        }

    .mega-menu-content h6 {
        color: white;
    }

    .mega-menu-content p {
        color: rgba(255,255,255,0.7);
    }
}

/* --- HAMBURGUESA ANIMADA --- */
.navbar-toggler {
    border: none;
    padding: 0;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--white);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

.navbar.scrolled .hamburger-icon span {
    background: var(--modern-blue);
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 9px;
}

.hamburger-icon span:nth-child(3) {
    top: 18px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* --- HERO SECTION (CARRUSEL) --- */
.hero-carousel {
    height: 100vh;
    position: relative;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
/* Capa oscura para legibilidad */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 79, 182, 0.6), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s backwards;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* --- BOTONES --- */
.btn-ruby {
    background-color: var(--ruby-red);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--ruby-red);
}
/* Boton contacto pequeño */
.btn-ruby-sm {
    padding: 6px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-ruby:hover {
    background-color: var(--ruby-red-dark);
    border-color: var(--ruby-red-dark);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(217, 36, 88, 0.4);
}

.btn-outline-light-custom {
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

    .btn-outline-light-custom:hover {
        background: white;
        color: var(--modern-blue);
    }

/* --- BOTÓN FLOTANTE "TE LLAMAMOS" --- */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

    .floating-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        background-color: #20b857;
        color: white;
    }

    .floating-cta i {
        font-size: 1.2rem;
    }

/* --- SECCIONES GENERALES --- */
.section-padding {
    padding: 80px 0;
}

.section-title {
    color: var(--modern-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        display: block;
        width: 50%;
        height: 4px;
        background: var(--ruby-red);
        margin-top: 5px;
        border-radius: 2px;
    }

/* --- QUIENES SOMOS (CARDS) --- */
.feature-card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    padding: 2rem;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 79, 182, 0.1);
    color: var(--modern-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.award-list li, .vision-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.award-list i, .vision-list i {
    color: var(--ruby-red);
    margin-right: 10px;
    margin-top: 5px;
}

/* --- SUCURSALES MAPA (RENOVADO VISUALMENTE) --- */
#sucursales {
    background: linear-gradient(135deg, #004FB6 0%, #002a5c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    #sucursales::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.sucursales-glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.branch-card-modern {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-left: 6px solid var(--ruby-red);
    position: relative;
    overflow: hidden;
}

    .branch-card-modern:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.branch-icon-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    color: rgba(0,0,0,0.03);
    transform: rotate(-15deg);
}

/* --- TABLA COMPARATIVA DE PLANES (NUEVO) --- */
.plans-table-container {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.table-custom th {
    background-color: var(--modern-blue);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    vertical-align: middle;
    font-family: 'Outfit', sans-serif;
}

.table-custom td {
    padding: 1.2rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.table-custom tr:hover td {
    background-color: #f8f9fa;
}

.plan-icon-header {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-info-custom {
    background: rgba(0, 79, 182, 0.1);
    border: none;
    color: var(--modern-blue);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

    .btn-info-custom:hover {
        background: var(--modern-blue);
        color: white;
    }

/* --- INTERNET EN CASA --- */
.internet-card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

    .internet-card:hover {
        transform: translateY(-10px);
    }

.speed-badge {
    background: var(--ruby-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- ATENCIÓN CORPORATIVA (NUEVO) --- */
.corp-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    text-align: center;
}

/* Nuevo Carrusel Corporativo */
#corpSolutionsCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.corp-slide-item {
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.corp-slide-caption {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border-left: 5px solid var(--ruby-red);
}

/* Modelo InPlant Moderno */
.inplant-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

    .inplant-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 10px;
        background: var(--modern-blue);
    }

.inplant-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 79, 182, 0.1);
    color: var(--modern-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.inplant-feature:hover .inplant-icon {
    background: var(--modern-blue);
    color: white;
    transform: scale(1.1);
}

/* Clientes Badge Grid */
.client-badge {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 800;
    color: var(--elegant-gray);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

    .client-badge:hover {
        transform: translateY(-5px);
        border-bottom-color: var(--ruby-red);
        color: var(--modern-blue);
    }

/* Stats Animadas */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: -webkit-linear-gradient(45deg, var(--modern-blue), var(--ruby-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- ESTILOS BUSCADOR PLANES (Preservados) --- */
.plans-filter-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-control-dark, .form-select-dark {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    padding: 12px 15px;
}

    .form-control-dark:focus, .form-select-dark:focus {
        background-color: rgba(255,255,255,0.1);
        border-color: var(--ruby-red);
        color: white;
        box-shadow: 0 0 0 0.25rem rgba(217, 36, 88, 0.25);
    }

    .form-select-dark option {
        background-color: var(--elegant-gray);
        color: white;
    }

.form-label-custom {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Tarjeta de Plan Buscador */
.plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

    .plan-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 79, 182, 0.15);
        z-index: 2;
    }

.plan-header {
    background: var(--modern-blue);
    padding: 1.5rem;
    color: white;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

    .plan-header.masivo {
        background: linear-gradient(135deg, var(--modern-blue) 0%, #003a85 100%);
    }

    .plan-header.profamily {
        background: linear-gradient(135deg, #6610f2 0%, #4c0bce 100%);
    }

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ruby-red);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-body {
    padding: 1.5rem;
}

.data-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #f0f2f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

    .data-circle::after {
        content: '';
        position: absolute;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
        border-radius: 50%;
        border: 8px solid transparent;
        border-top-color: var(--ruby-red);
        border-right-color: var(--ruby-red);
        transform: rotate(45deg);
    }

.benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    font-size: 0.9rem;
    color: white;
}
/* Colores de Marcas (Aproximación) */
.bg-claro-video {
    background: #d90000;
}

.bg-claro-drive {
    background: #ef7d00;
}

.bg-prime {
    background: #00A8E1;
}

.bg-paramount {
    background: #0064FF;
}

.bg-vrim {
    background: #6c757d;
}

.bg-tdu {
    background: #28a745;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.85rem;
    text-align: left;
}

/* --- FOOTER --- */
footer {
    background-color: var(--elegant-gray);
    color: white;
    padding-top: 60px;
    padding-bottom: 20px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-link:hover {
        color: var(--ruby-red);
        padding-left: 5px;
    }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .plans-filter-container {
        padding: 1.5rem;
    }
}

/* --- Animations --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pop-in {
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Animacion Promo Gigas */
.promo-highlight {
    animation: pulse 2s infinite;
    color: var(--ruby-red);
    font-weight: bold;
    cursor: help;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


/* Tooltip custom */
.tooltip-inner {
    background-color: var(--modern-blue);
    color: white;
}

/* Servicios Exclusivos Hero Block Styles */
.services-hero-block {
    position: relative;
    background: linear-gradient(135deg, #002a5c 0%, #004FB6 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
}

    .services-hero-block::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1000&q=80') no-repeat center center;
        background-size: cover;
        opacity: 0.2;
        z-index: 0;
    }

.services-hero-content {
    position: relative;
    z-index: 1;
}

/* Servicios Exclusivos Grid Styles */
.exclusive-service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    cursor: pointer;
    height: 100%;
}

    .exclusive-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 79, 182, 0.15);
        border-top-color: var(--ruby-red);
    }

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 79, 182, 0.05);
    color: var(--modern-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.exclusive-service-card:hover .service-icon-wrapper {
    background: var(--modern-blue);
    color: white;
    transform: rotateY(360deg);
}

input, select, textarea {
     max-width: 100% !important;
}