@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap');

/* ============================
   VARIABLES DE COLOR
   ============================ */
:root {
    --color-accent: #ffc107;
    --color-accent-dark: #e0a800;
    --color-accent-light: rgba(255, 193, 7, 0.15);
    --color-error: #e74c3c;
    --color-error-bg: rgba(231, 76, 60, 0.1);
    --color-warning: #f39c12;
    --color-warning-bg: rgba(243, 156, 18, 0.1);
    --color-warning-dark: #d68910;
    --color-success: #25D366;
    --color-success-bg: rgba(37, 211, 102, 0.1);
    --color-info: #3498db;
    --color-info-bg: rgba(52, 152, 219, 0.1);
    --color-bg-tertiary: rgba(42, 42, 42, 0.7);
    --color-bg-secondary: rgba(42, 42, 42, 0.8);
    --color-text-primary: #f0f0f0;
    --color-text-secondary: #cccccc;
    --color-text-muted: #999999;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* ============================
   RESET Y ESTILOS BASE
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    min-height: 100vh;
    text-align: center;
    position: relative;
    padding-top: 92px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('logo.webp') no-repeat center center/contain;
    opacity: 0.15;
    z-index: -1;
}

/* ============================
   HEADER Y NAVEGACIÓN
   ============================ */
.main-header {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ffc107;
    padding: 10px 20px;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu li a:hover {
    background-color: #ffc107;
    color: #1a1a1a;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffc107;
    font-size: 2em;
    cursor: pointer;
    padding: 5px 10px;
    flex-shrink: 0;
}

.mobile-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 999;
    border-bottom: 1px solid #ffc107;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #ffc107;
}

/* ============================
   HERO SECTION
   ============================ */
.rejas-hero-modern {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.9) 50%, rgba(42,42,42,0.85) 100%),
                url('logo.webp') center/cover;
    border-radius: 15px;
    padding: 60px 30px;
    margin: 30px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
    border-bottom: 3px solid #ffc107;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 193, 7, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 193, 7, 0.4);
    color: #ffc107;
}

.rejas-title-hero {
    font-size: 2.8em;
    font-weight: 900;
    color: #ffc107;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.rejas-subtitle-hero {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.rejas-subtitle-hero strong {
    color: #ffc107;
}

.hero-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 193, 7, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95em;
    color: #ffc107;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.benefit-item i {
    color: #ffc107;
    font-size: 1.2em;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-hero-telefono,
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-telefono {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #1a1a1a;
    border: 2px solid #ffc107;
}

.btn-hero-telefono:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.btn-hero-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border: 2px solid #25d366;
}

.btn-hero-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-hero-telefono i,
.btn-hero-whatsapp i {
    font-size: 1.3em;
}

/* ============================
   SECCIONES GENERALES
   ============================ */
.rejas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.section-title {
    font-size: 2.2em;
    font-weight: 800;
    color: #ffc107;
    margin: 60px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.section-title i {
    font-size: 1.2em;
}

.section-intro {
    font-size: 1.2em;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================
   SEGURIDAD IMPORTA SECTION
   ============================ */
.seguridad-importa-section {
    background-color: rgba(255, 193, 7, 0.03);
    border-radius: 15px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15em;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.intro-text strong {
    color: #ffc107;
}

.alerta-seguridad {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(192, 57, 43, 0.15) 100%);
    border: 2px solid rgba(231, 76, 60, 0.4);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alerta-seguridad i {
    color: #e74c3c;
    font-size: 1.8em;
    flex-shrink: 0;
}

.alerta-contenido {
    text-align: left;
    color: #e0e0e0;
    line-height: 1.6;
}

.alerta-contenido strong {
    color: #e74c3c;
    display: block;
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* ============================
   CAJAS DE INFORMACIÓN (error, success, warning, info)
   ============================ */
.info-box-error {
    background: var(--color-error-bg);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-error);
    margin: 1.5rem 0;
}

.info-box-error h4 {
    color: var(--color-error);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box-error ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.info-box-error ul li {
    margin-bottom: 0.3rem;
}

.info-box-success {
    background: var(--color-success-bg);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-success);
    margin: 1.5rem 0;
}

.info-box-success h4 {
    color: var(--color-success);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box-success p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-box-success p strong {
    color: var(--color-text-primary);
}

.info-box-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.info-box-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box-warning {
    background: var(--color-warning-bg);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-warning);
    margin: 1.5rem 0;
}

.info-box-warning h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box-warning p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-box-warning p strong {
    color: var(--color-text-primary);
}

.info-box-info {
    background: var(--color-info-bg);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-info);
    margin: 1.5rem 0;
}

.info-box-info h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box-info p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-box-info p strong {
    color: var(--color-text-primary);
}

/* ============================
   GRID DE REJAS
   ============================ */
.tipos-rejas-section {
    padding: 20px 0;
}

.rejas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 1200px;
}

.rejas-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.7) 0%, rgba(42, 42, 42, 0.5) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.rejas-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.rejas-card.destacado {
    border-color: #ffc107;
    border-width: 2px;
    background: rgba(255, 193, 7, 0.05);
}

.destacado-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
}

.rejas-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rejas-icon i {
    font-size: 1.8em;
    color: #1a1a1a;
}

.rejas-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
}

.rejas-text {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.rejas-text strong {
    color: #ffffff;
}

.rejas-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.rejas-list li {
    color: #e0e0e0;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.5;
}

.rejas-list li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: #ffc107;
    font-size: 0.9em;
}

.rejas-ideal {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95em;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.rejas-ideal strong {
    color: #ffc107;
}

.precio-desde {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(224, 168, 0, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.precio-label {
    font-size: 0.85em;
    color: #999999;
    text-transform: uppercase;
}

.precio-valor {
    font-size: 1.8em;
    font-weight: 800;
    color: #ffc107;
}

.precio-unidad {
    font-size: 0.85em;
    color: #777777;
    font-style: italic;
}

/* ============================
   NIVELES DE SEGURIDAD
   ============================ */
.materiales-seguridad-section {
    background-color: rgba(255, 193, 7, 0.03);
    border-radius: 15px;
    padding: 50px 30px;
    margin: 60px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.niveles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.nivel-card {
    background: rgba(42, 42, 42, 0.7);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.nivel-card:hover {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.nivel-card.recomendado {
    border-color: #ffc107;
    border-width: 2px;
}

.recomendado-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
}

.nivel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.nivel-header.basico {
    background: linear-gradient(135deg, rgba(149, 165, 166, 0.2) 0%, rgba(127, 140, 141, 0.2) 100%);
    border: 1px solid rgba(149, 165, 166, 0.4);
}

.nivel-header.estandar {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(224, 168, 0, 0.2) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.nivel-header.maxima-seguridad {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(192, 57, 43, 0.2) 100%);
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.nivel-header h3 {
    font-size: 1.2em;
    color: #ffffff;
    margin: 0;
}

.nivel-header i {
    font-size: 1.5em;
    color: #ffffff;
}

.nivel-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.nivel-list li {
    color: #e0e0e0;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.5;
}

.nivel-list li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: #ffc107;
    font-size: 0.9em;
}

.nivel-recomendacion {
    font-size: 0.9em;
    color: #999999;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nivel-recomendacion strong {
    color: #ffc107;
}

/* ============================
   MÉTODOS DE INTRUSIÓN
   ============================ */
.metodos-intrusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* ============================
   PROCESO
   ============================ */
.proceso-instalacion-section {
    padding: 40px 0;
}

.proceso-intro {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 40px;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.proceso-step {
    text-align: center;
    padding: 25px 20px;
}

.step-numero {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #1a1a1a;
    font-size: 1.5em;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.proceso-step h3 {
    font-size: 1.2em;
    color: #ffc107;
    margin-bottom: 12px;
}

.proceso-step p {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.6;
}

/* ============================
   PRECIOS
   ============================ */
.precios-rejas-section {
    background-color: rgba(255, 193, 7, 0.03);
    border-radius: 15px;
    padding: 50px 30px;
    margin: 60px auto;
    max-width: 1200px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.precios-intro {
    font-size: 1.15em;
    color: #cccccc;
    margin-bottom: 35px;
    text-align: center;
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.precio-card {
    background: rgba(42, 42, 42, 0.7);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

.precio-card h4 {
    font-size: 1.1em;
    color: #ffc107;
    margin-bottom: 12px;
}

.precio-rango {
    font-size: 1.8em;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 10px;
}

.precio-detalle {
    font-size: 0.9em;
    color: #999999;
    margin-bottom: 8px;
}

.precio-ejemplo {
    font-size: 0.85em;
    color: #777777;
    font-style: italic;
}

.precios-nota {
    background-color: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.precios-nota i {
    color: #ffc107;
    font-size: 1.5em;
    flex-shrink: 0;
}

.precios-nota p {
    color: #e0e0e0;
    font-size: 1em;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.precios-nota strong {
    color: #ffc107;
}

/* ============================
   FAQ
   ============================ */
.faq-rejas-section {
    padding: 40px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(42, 42, 42, 0.7);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
}

.faq-item h3 {
    font-size: 1.15em;
    color: #ffc107;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ffc107;
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 0.8em;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 0.95em;
}

/* ============================
   TESTIMONIO
   ============================ */
.testimonio-seguridad-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(224, 168, 0, 0.1) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    margin: 60px auto;
    max-width: 900px;
}

.testimonio-content {
    text-align: center;
}

.testimonio-icon {
    font-size: 2.5em;
    color: #ffc107;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonio-text {
    font-size: 1.2em;
    color: #e0e0e0;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonio-text strong {
    color: #ffc107;
}

.testimonio-autor {
    font-size: 1em;
    color: #999999;
    font-weight: 600;
}

/* ============================
   CTA FINAL
   ============================ */
.cta-final-rejas {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(42,42,42,0.9) 100%);
    border-radius: 15px;
    padding: 50px 30px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
    border: 2px solid rgba(255, 193, 7, 0.4);
}

.cta-final-content h2 {
    font-size: 2em;
    color: #ffc107;
    margin-bottom: 15px;
}

.cta-final-content p {
    font-size: 1.15em;
    color: #e0e0e0;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-final-telefono {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #1a1a1a;
    border: 2px solid #ffc107;
}

.btn-final-telefono:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.btn-final-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border: 2px solid #25d366;
}

.btn-final-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-final-telefono,
.btn-final-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-final-telefono i,
.btn-final-whatsapp i {
    font-size: 1.3em;
}

.cta-garantia {
    margin-top: 25px;
    font-size: 0.95em;
    color: #999999;
}

.cta-garantia i {
    color: #ffc107;
    margin-right: 8px;
}

/* ============================
   PROYECTO DESTACADO
   ============================ */
.proyecto-destacado-link:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
}

.proyecto-destacado-link:hover .proyecto-imagen img {
    transform: scale(1.05);
}

.proyecto-destacado-link:hover .proyecto-ver-mas {
    background: #ffdb4d;
    transform: translateX(5px);
}

/* ============================
   FOOTER
   ============================ */
.main-footer {
    background-color: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #ffc107;
    padding: 30px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: #999999;
    margin: 10px 0;
}

.footer-content a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: #ffffff;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .rejas-title-hero {
        font-size: 1.8em;
    }

    .rejas-subtitle-hero {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .rejas-grid,
    .niveles-grid,
    .proceso-grid,
    .precios-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-cta-buttons,
    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-telefono,
    .btn-hero-whatsapp,
    .btn-final-telefono,
    .btn-final-whatsapp {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .alerta-seguridad {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 75px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .rejas-hero-modern {
        padding: 40px 20px;
    }

    .rejas-title-hero {
        font-size: 1.5em;
    }

    .rejas-subtitle-hero {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.4em;
    }

    .rejas-card,
    .faq-item {
        padding: 20px 15px;
    }
}
