/* ==================================================
   GPS ALARMA INTELIGENTE - CSS LIMPIO
   Ordenado para trabajar con index_limpio.html
================================================== */

:root {
    --fondo: #08090B;
    --texto: #FFFFFF;
    --verde: #22C55E;
    --rojo: #E53935;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    background: var(--fondo);
    color: var(--texto);
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 85px;
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(8, 10, 15, .92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-emergency {
    background: #E53935;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-login {
    background: #22C55E;
    color: white;
    padding: 15px 18px;
    border-radius: 8px;
    text-decoration: none;
}

.menu a {
    position: relative;
    transition: 0.3s ease;
}

.menu a:hover {
    color: var(--verde);
}

.btn-emergency,
.btn-login {
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-emergency:hover,
.btn-login:hover {
    transform: translateY(-2px);
}

.hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 90px 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .45;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 680px;
    transform: translateY(-100px);
}

.hero-text h1 {
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.hero-text h1 span {
    color: var(--verde);
    display: block;
}

.hero-text p {
    color: #C9CED6;
    font-size: 20px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-outline {
    color: white;
    padding: 14px 24px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #08090B;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 35%, rgba(10, 77, 135, 0.35), transparent 35%),
        radial-gradient(circle at 20% 70%, rgba(34, 197, 94, 0.18), transparent 30%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: 8%;
    top: 22%;
    background: rgba(10, 77, 135, 0.22);
    filter: blur(90px);
    border-radius: 50%;
    z-index: -1;
}

.hero-phone {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.vehicle-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.vehicle-card p {
    color: var(--color-gris);
    font-size: 14px;
}

.phone-actions button {
    border: none;
    border-radius: 14px;
    padding: 14px 8px;
    background: var(--verde);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.phone-actions .danger {
    background: #E53935;
}

.benefit-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #C9CED6;
    line-height: 1.6;
    font-size: 16px;
    max-width: 340px;
    margin-bottom: 16px;
}

.benefit-card a {
    color: var(--verde);
    text-decoration: none;
    font-weight: 800;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 45px;
    max-width: 700px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    transition: .3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: #22c55e;
    background: rgba(34, 197, 94, .08);
}

.feature-item span {
    font-size: 24px;
}

.feature-item p {
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.hero-message {
    margin-top: 30px;
    color: #22c55e;
    font-size: 20px;
    font-weight: 700;
}

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.phone-animation-bg {
    position: relative;
    width: 440px;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-120px);
}

.phone-animation-bg .phone {
    position: relative;
    z-index: 10;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(0, 145, 255, 0.45) 0%,
            rgba(0, 145, 255, 0.18) 38%,
            rgba(0, 145, 255, 0.05) 62%,
            transparent 75%);
    filter: blur(35px);
    animation: glowPulse 5s ease-in-out infinite;
    z-index: 1;
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 170, 255, .35);
    box-shadow: 0 0 15px rgba(0, 170, 255, .20);
}

.orbit::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #00b7ff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00b7ff;
}

.orbit-1 {
    width: 260px;
    height: 260px;
}

.orbit-2 {
    width: 320px;
    height: 320px;
}

.orbit-3 {
    width: 390px;
    height: 390px;
}

.gps-wave {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(0, 183, 255, 0.35);
    border-radius: 50%;
    z-index: 3;
    animation: gpsWave 3s ease-out infinite;
}

.wave-2 {
    animation-delay: 1.5s;
}

.particle {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #00d9ff;
    border-radius: 50%;
    box-shadow: 0 0 14px #00d9ff;
    z-index: 4;
    animation: particleFloat 5s ease-in-out infinite;
}

.p1 {
    top: 85px;
    left: 65px;
    animation-delay: 0s;
}

.p2 {
    top: 130px;
    right: 55px;
    animation-delay: 1s;
}

.p3 {
    bottom: 120px;
    left: 55px;
    animation-delay: 2s;
}

.p4 {
    bottom: 90px;
    right: 70px;
    animation-delay: 3s;
}

@keyframes phoneFloat {
    0%,
    100% {
    transform: translateY(0);
}

50% {
    transform: translateY(-12px);
}

}

@keyframes glowPulse {
    0%,
    100% {
    transform: scale(1);
    opacity: 0.75;
}

50% {
    transform: scale(1.12);
    opacity: 1;
}

}

@keyframes gpsWave {
    0% {
    transform: scale(0.4);
    opacity: 0.7;
}

100% {
    transform: scale(3.1);
    opacity: 0;
}

}

@keyframes particleFloat {
    0%,
    100% {
    transform: translateY(0);
    opacity: 0.45;
}

50% {
    transform: translateY(-25px);
    opacity: 1;
}

}

.hero-rating {
    margin-top: 6px;
}

.hero-rating .stars {
    color: #FACC15;
    font-size: 22px;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(250, 204, 21, .35);
    line-height: 1;
}

.hero-rating p {
    margin-top: 8px;
    color: #D1D5DB;
    font-size: 14px;
}

.car span {
    display: none;
}

.phone-image {
    width: 400px;
    transform: translateY(35px);
}

.why-us {
    padding: 0px 0;
    background: #090b10;
    text-align: center;
}

.section-mini-title {
    color: #22C55E;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
}

.why-us h2 {
    font-size: 48px;
    color: white;
    margin-top: 20px;
}

.why-us h2 span {
    color: #22C55E;
}

.why-description {
    color: #A0AEC0;
    max-width: 700px;
    margin: 20px auto 70px;
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: #11151d;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 40px 25px;
    transition: .35s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #22C55E;
    box-shadow: 0 20px 40px rgba(34, 197, 94, .15);
}

.icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.hero-message {
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.message-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(34, 197, 94, .12);
    color: #22C55E;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.message-item p {
    color: #E5E7EB;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.message-item span {
    color: #22C55E;
    font-weight: 700;
}

.message-item strong {
    color: white;
}

.stat-card h3 {
    color: #22C55E;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.stat-card h4 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.stat-card p {
    color: #A0AEC0;
    line-height: 1.7;
}

.advantages {
    margin: 0px auto 0;
    width: 92%;
    max-width: 1150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 10px;
    overflow: hidden;
}

.advantage-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    min-height: 68px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.advantage-item:last-child {
    border-right: none;
}

.advantage-item:hover {
    background: rgba(34, 197, 94, .05);
}

.advantage-item .icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
    color: #E5E7EB;
}

.advantage-item h4 {
    font-size: 14px;
    margin-bottom: 2px;
    color: #fff;
}

.advantage-item small {
    font-size: 11px;
    color: #8B98A8;
    line-height: 1.3;
}

.phone-image {
    position: absolute;
    width: 400px;
    opacity: 0;
    transition: opacity 1s ease;
}

.phone-image.active {
    opacity: 1;
}

.hero-text {
    opacity: 1;
    transition:
        opacity 2s linear,
        filter 2s linear;
}

.hero-text.fade-out {
    opacity: 0.3;
    filter: blur(2px);
}

.green-card h3 {
    color: #22C55E;
}

.purple-card {
    border: 1px solid rgba(139, 92, 246, .45);
}

.purple-card:hover {
    box-shadow: 0 0 35px rgba(139, 92, 246, .25);
}

.purple-card h3 {
    color: #A855F7;
}

.blue-card {
    border: 1px solid rgba(59, 130, 246, .45);
}

.blue-card:hover {
    box-shadow: 0 0 35px rgba(59, 130, 246, .25);
}

.blue-card h3 {
    color: #3B82F6;
}

.green2-card {
    border: 1px solid rgba(16, 185, 129, .45);
}

.green2-card:hover {
    box-shadow: 0 0 35px rgba(16, 185, 129, .25);
}

.green2-card h3 {
    color: #10B981;
}

.green-card .icon {
    color: #22C55E;
}

.purple-card .icon {
    color: #A855F7;
}

.blue-card .icon {
    color: #3B82F6;
}

.green2-card .icon {
    color: #10B981;
}

#funciones {
    scroll-margin-top: 20px;
}

.features-section {
    padding: 35px 0 50px;
    background: #05080f;
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 35px;
}

.section-badge {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 30px;
    background: rgba(255, 59, 59, 0.12);
    color: #ff3b3b;
    font-weight: 800;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 59, 59, 0.3);
}

.section-header h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #ff3b3b;
}

.section-header p {
    color: #cfd6e6;
    font-size: 17px;
}

.feature-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.feature-tab {
    position: relative;
    min-height: 118px;
    padding: 40px 20px 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: 0.28s ease;
    overflow: hidden;
}

.feature-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 59, 59, 0.16), transparent 45%);
    opacity: 0;
    transition: 0.28s ease;
}

.feature-tab:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 59, 59, 0.55);
}

.feature-tab:hover::before {
    opacity: 1;
}

.feature-tab.active {
    border-color: #ff3b3b;
    box-shadow: 0 14px 32px rgba(255, 59, 59, 0.16);
}

.feature-tab span {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255,255,255,.28);
    line-height: 1;
}

.feature-tab strong {
    padding-top:6px;
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 8px;
    z-index: 2;
}

.feature-tab small {
    position: relative;
    display: block;
    color: #cfd6e6;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 12px;
    z-index: 2;
}

.feature-tab b {
    position: relative;
    color: #ff3b3b;
    font-size: 15px;
    z-index: 2;
}

.feature-tab b::after {
    content: " →";
    transition: 0.25s ease;
}

.feature-tab:hover b::after {
    margin-left: 5px;
}

.feature-helper {
    text-align: center;
    margin: 20px 0 25px;
    color: #dbe4f5;
    font-size: 16px;
}

.feature-detail {
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.14);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
    align-items: center;
}

.feature-detail-text span {
    display: inline-block;
    color: #ff3b3b;
    font-weight: 900;
    margin-bottom: 12px;
}

.feature-detail-text h3 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.feature-detail-text p {
    color: #cfd6e6;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 760px;
}

.feature-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px 20px;
}

.feature-benefits div {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.055);
    color: #fff;
    font-size: 15px;
}

.feature-detail-visual {
    display: flex;
    justify-content: center;
}

.feature-visual-card {
    width: 230px;
    height: 250px;
    border-radius: 32px;
    background: radial-gradient(circle at center, rgba(255,59,59,0.22), #0b1220 70%);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    text-align: center;
    padding: 24px;
}

.visual-icon {
    font-size: 66px;
    margin-bottom: 18px;
}

.feature-visual-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-visual-card p {
    color: #cfd6e6;
    font-size: 14px;
}

@media (max-width: 992px) {
    .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
}

.feature-detail {
    grid-template-columns: 1fr;
}

.section-header h2 {
    font-size: 34px;
}

}

@media (max-width: 600px) {
    .feature-tabs {
    grid-template-columns: 1fr;
}

.feature-benefits {
    grid-template-columns: 1fr;
}

.features-section {
    padding: 45px 0 70px;
}

}

.emergency-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.emergency-modal.active {
    display: flex;
}

.emergency-box {
    width: 100%;
    width:92%;
    max-width: 480px;
    border-radius: 22px;
    padding: 24px;
    position: relative;
    background:
        radial-gradient(circle at top, rgba(255, 59, 59, 0.25), transparent 35%),
        linear-gradient(180deg, #141821, #07090f);
    border: 1px solid rgba(255, 59, 59, 0.65);
    box-shadow:
        0 0 35px rgba(255, 59, 59, 0.35),
        0 30px 90px rgba(0, 0, 0, 0.65);
    animation: emergencyIn 0.25s ease;
}

.emergency-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.emergency-header {
    text-align: center;
    margin-bottom: 26px;
}

.emergency-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

.emergency-header h2 {
    color: #ff3b3b;
    font-size: 42px;
    margin-bottom: 6px;
}

.emergency-header p {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.emergency-options {
    display: grid;
    gap: 12px;
}

.emergency-option {
    display: grid;
    grid-template-columns: 54px 1fr 20px;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.065);
    border: 1px solid rgba(255,255,255,0.13);
    color: #fff;
    text-decoration: none;
    transition: 0.25s ease;
}

.emergency-option:hover {
    transform: translateX(5px);
    border-color: rgba(255, 59, 59, 0.65);
    background: rgba(255, 59, 59, 0.12);
}

.emergency-option span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 59, 59, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.emergency-option strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.emergency-option small {
    color: #cfd6e6;
    font-size: 14px;
}

.emergency-option b {
    font-size: 34px;
    color: #fff;
    font-weight: 300;
}

.emergency-call span {
    background: rgba(255,255,255,0.18);
}

.emergency-cancel {
    display: block;
    margin: 22px auto 0;
    min-width: 150px;
    padding: 12px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.emergency-cancel:hover {
    background: rgba(255,255,255,0.12);
}

@keyframes emergencyIn {
    from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
}

to {
    opacity: 1;
    transform: translateY(0) scale(1);
}

}

@media (max-width: 600px) {
    .emergency-box {
    padding: 26px 18px;
}

.emergency-header h2 {
    font-size: 32px;
}

.emergency-option {
    grid-template-columns: 46px 1fr 16px;
    gap: 12px;
    padding: 14px;
}

.emergency-option span {
    width: 46px;
    height: 46px;
    font-size: 22px;
}

.emergency-option strong {
    font-size: 16px;
}

}

#testimonios {
    scroll-margin-top: 75px;
}

.reviews-section {
    padding: 0px 0 95px;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.14), transparent 35%),
        #05080f;
    color: #fff;
}

.reviews-badge {
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.reviews-section .section-header h2 span {
    color: #22C55E;
}

.reviews-main-card {
    max-width: 1150px;
    margin: 35px auto 0;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.14);
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.reviews-google,
.reviews-counter,
.reviews-trust {
    text-align: center;
    padding: 25px;
    border-radius: 22px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    transition: all .35s ease;
    cursor: pointer;
}

.reviews-google:hover,
.reviews-counter:hover,
.reviews-trust:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #22C55E;
    box-shadow:
        0 20px 45px rgba(34,197,94,.25),
        0 0 25px rgba(34,197,94,.20);
    background: rgba(34,197,94,.08);
}

.reviews-google-icon,
.reviews-shield {
    transition: .35s ease;
}

.reviews-google:hover .reviews-google-icon,
.reviews-trust:hover .reviews-shield {
    transform: scale(1.12) rotate(8deg);
}

.reviews-counter h3 {
    transition:.35s ease;
}

.reviews-counter:hover h3 {
    transform: scale(1.12);
    text-shadow:0 0 25px rgba(34,197,94,.6);
}

.reviews-google-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #fff;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 900;
}

.reviews-stars {
    color: #FACC15;
    font-size: 25px;
    letter-spacing: 3px;
    text-shadow: 0 0 14px rgba(250, 204, 21, 0.35);
}

.reviews-stars.small {
    font-size: 18px;
    letter-spacing: 1px;
}

.reviews-google h3,
.reviews-counter h3 {
    font-size: 64px;
    line-height: 1;
    color: #22C55E;
    margin: 14px 0 10px;
}

.reviews-google p,
.reviews-counter p,
.reviews-trust p {
    color: #cfd6e6;
    font-size: 18px;
    line-height: 1.6;
}

.reviews-counter p {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.reviews-counter small {
    display: block;
    color: #22C55E;
    font-weight: 700;
    font-size: 25px;
    margin-top: 12px;
}

.reviews-shield {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #22C55E, #0A7CFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(34,197,94,0.25);
}

.reviews-trust h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.reviews-actions {
    text-align: center;
    margin: 32px 0 45px;
}

.reviews-button {
    display: inline-block;
    font-size: 18px;
    padding: 17px 28px;
}

.review-card p {
    color: #cfd6e6;
    line-height: 1.7;
    margin: 18px 0;
}

.review-card strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.review-card span {
    color: #22C55E;
    font-size: 14px;
    font-weight: 700;
}

.reviews-stats {
    max-width: 1150px;
    margin: 45px auto 0;
    padding: 28px;
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.reviews-stat {
    text-align: center;
    padding: 18px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.reviews-stat:last-child {
    border-right: none;
}

.reviews-stat span {
    font-size: 36px;
}

.reviews-stat strong {
    display: block;
    color: #22C55E;
    font-size: 30px;
    margin: 10px 0 5px;
}

.reviews-stat p {
    color: #cfd6e6;
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-main-card {
    grid-template-columns: 1fr;
}

.reviews-stats {
    grid-template-columns: repeat(2, 1fr);
}

.reviews-stat:nth-child(2) {
    border-right: none;
}

}

@media (max-width: 600px) {
    .reviews-section {
    padding: 60px 0 75px;
}

.reviews-main-card {
    padding: 20px;
}

.reviews-google h3,
.reviews-counter h3 {
    font-size: 52px;
}

.reviews-stats {
    grid-template-columns: 1fr;
}

.reviews-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.reviews-stat:last-child {
    border-bottom: none;
}

.reviews-button {
    width: 100%;
    text-align: center;
}

}

.reviews-modal.active {
    display: flex;
}

.reviews-modal-header span {
    display: inline-block;
    color: #22C55E;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.reviews-modal-header h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 6px;
}

.reviews-modal-stars {
    color: #FACC15;
    font-size: 24px;
    letter-spacing: 4px;
    text-shadow: 0 0 14px rgba(250,204,21,0.35);
}

.reviews-modal-stars.small {
    font-size: 20px;
    letter-spacing: 2px;
}

.reviews-modal-header p {
    color: #cfd6e6;
    margin-top: 10px;
}

.reviews-modal-card p {
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.7;
    margin: 14px 0;
}

.reviews-modal-card strong {
    display: block;
    color: #22C55E;
    font-size: 17px;
}

@media (max-width: 600px) {
    .reviews-modal-header h2 {
    font-size: 28px;
}

}

.reviews-carousel {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 5px auto;
    min-height: 220px;
}

.reviews-slide {
    display: none;
    width: 100%;
    padding: 14px 45px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
    animation: reviewFade 0.45s ease;
}

.reviews-slide.active {
    display: block;
}

.reviews-slide p {
    font-size: 16px;
    line-height: 1.45;
    margin: 10px auto;
}

.reviews-slide strong {
    display: block;
    color: #22C55E;
    font-size: 22px;
    margin-bottom: 5px;
}

.reviews-slide span {
    color: #cfd6e6;
    font-size: 15px;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: 0.25s ease;
}

.reviews-arrow:hover {
    background: rgba(34,197,94,0.20);
    border-color: rgba(34,197,94,0.55);
}

.reviews-arrow.left {
    left: 10px;
}

.reviews-arrow.right {
    right: 10px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
}

.review-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: 0.25s ease;
}

.review-dot.active {
    width: 32px;
    border-radius: 20px;
    background: #22C55E;
}

@keyframes reviewFade {
    from {
    opacity: 0;
    transform: translateX(18px);
}

to {
    opacity: 1;
    transform: translateX(0);
}

}

@media (max-width: 600px) {
    .reviews-carousel {
    min-height: 330px;
}

.reviews-slide {
    padding: 28px 42px;
}

.reviews-slide p {
    font-size: 19px;
}

.reviews-arrow {
    width: 38px;
    height: 38px;
    font-size: 32px;
}

.reviews-arrow.left {
    left: 4px;
}

.reviews-arrow.right {
    right: 4px;
}

}

.reviews-hidden {
    display: none;
}

.reviews-grid.show {
    display: grid;
}

.planes-section {
    background: radial-gradient(circle at top, #082b5f 0%, #020814 45%, #01040a 100%);
    padding: 20px 20px 50px;
}

.planes-container {
    max-width: 1180px;
    margin: auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: #0b73ff;
    color: #fff;
    font-weight: 800;
    padding: 8px 22px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-size: 14px;
}

.planes-title {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    margin-bottom: 15px;
    font-weight: 800;
}

.planes-title span {
    color: #0b86ff;
}

.planes-subtitle {
    font-size: 18px;
    color: #dbe7ff;
    margin-bottom: 30px;
}

.planes-benefits {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.planes-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eaf3ff;
    font-size: 16px;
}

.planes-benefits span {
    color: #1e9bff;
    font-weight: 700;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: rgba(8, 18, 34, 0.88);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 42px 26px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.plan-basic {
    border-color: rgba(180, 195, 220, 0.45);
}

.plan-core {
    border-color: #168cff;
    box-shadow: 0 0 28px rgba(0, 132, 255, 0.5);
}

.plan-pro {
    border-color: #ff1f2d;
    box-shadow: 0 0 28px rgba(255, 31, 45, 0.45);
}

.plan-label {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #005be8, #168cff);
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
}

.plan-label.red {
    background: linear-gradient(135deg, #b30009, #ff1f2d);
}

.plan-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
}

.plan-card h3 {
    font-size: 34px;
    margin-bottom: 6px;
    font-weight: 900;
}

.plan-card h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #f4f8ff;
}

.plan-card p {
    color: #cfd9eb;
    font-size: 15px;
    line-height: 1.5;
    min-height: 48px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 12px;
    color: #f3f8ff;
    font-size: 15px;
}

.plan-card ul li::before {
    content: "✓";
    color: #168cff;
    font-weight: 900;
    margin-right: 10px;
}

.plan-pro ul li::before {
    color: #ff2d3d;
}

.plan-price {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.plan-price div:first-child {
    border-right: 1px solid rgba(255,255,255,0.25);
}

.plan-price small {
    display: block;
    color: #d2d9e8;
    font-size: 13px;
    margin-bottom: 8px;
}

.plan-price strong {
    font-size: 32px;
    font-weight: 900;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 16px 18px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
}

.plan-btn.gray {
    background: linear-gradient(135deg, #444d5c, #687386);
}

.plan-btn.blue {
    background: linear-gradient(135deg, #005be8, #168cff);
}

.plan-btn.red {
    background: linear-gradient(135deg, #c90010, #ff1f2d);
}

.plan-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .planes-grid {
    grid-template-columns: 1fr;
}

.plan-card {
    max-width: 430px;
    margin: auto;
}

.planes-benefits {
    gap: 20px;
}

}

#planes {
    scroll-margin-top: 35px;
}

.plan-help-box {
    margin-top:35px;
    padding:18px 25px;
    border-radius:18px;
    background:linear-gradient(90deg,#0f2340,#1b1523);
    border:1px solid rgba(255,255,255,.08);
}

.plan-help-box h3 {
    font-size:22px;
    margin-bottom:15px;
    text-align:center;
    font-weight:700;
}

.plan-help-options {
    display:flex;
    gap:15px;
}

.plan-help-options>div {
    flex:1;
    padding:15px 18px;
    border-radius:12px;
    background:rgba(255,255,255,.04);
}

.plan-help-options strong {
    display:block;
    font-size:22px;
    margin-bottom:6px;
}

.plan-help-options p {
    font-size:15px;
    line-height:1.4;
    margin:0;
}

@media (max-width:768px) {
    .plan-help-options {
    flex-direction:column;
}

}

.plan-help-box {
    margin-top: 45px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.18), rgba(255, 31, 45, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.plan-help-box h3 {
    font-size: 28px;
    margin-bottom: 22px;
}

.plan-help-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.plan-help-options div {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.plan-help-options strong {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.plan-help-options div:first-child strong {
    color: #168cff;
}

.plan-help-options div:last-child strong {
    color: #ff2d3d;
}

.plan-help-options p {
    color: #dbe7ff;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .plan-help-options {
    grid-template-columns: 1fr;
}

}

.faq-section {
    padding-top:0px;
    padding-right:20px;
    padding-bottom:40px;
    padding-left:20px;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    color: #1e88ff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.faq-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin: 12px 0;
    line-height: 1.05;
}

.faq-header p {
    color: #b8c0cc;
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto 28px;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-search input {
    width: 100%;
    height: 56px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #111;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #0d111a;
    border: 1px solid #1f2937;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    border-color: #1e88ff;
    box-shadow: 0 0 28px rgba(30, 136, 255, 0.18);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    padding: 22px 24px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-question span {
    min-width: 28px;
    height: 28px;
    background: #1e88ff;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.faq-question b {
    margin-left: auto;
    color: #1e88ff;
    font-size: 26px;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #c9d2df;
    font-size: 16px;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 900px;
    padding: 0 24px 24px 66px;
}

.faq-answer p {
    margin-bottom: 14px;
}

.faq-answer ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-cta {
    margin-top: 35px;
    background: linear-gradient(135deg, #07111f, #061b12);
    border: 1px solid #173b2a;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.faq-cta h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.faq-cta p {
    color: #b8c0cc;
}

.faq-cta a {
    background: #12b347;
    color: #fff;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.3s;
}

.faq-cta a:hover {
    background: #0c963a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-section {
    padding: 70px 16px;
}

.faq-question {
    font-size: 16px;
    padding: 18px;
}

.faq-item.active .faq-answer {
    padding: 0 18px 20px 18px;
}

.faq-cta {
    flex-direction: column;
    text-align: center;
}

.faq-cta a {
    width: 100%;
    text-align: center;
}

}

.contact-section {
    background: #050505;
    color: #fff;
    padding: 30px 20px 40px;
    scroll-margin-top: 90px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    max-width: 700px;
    margin-bottom: 45px;
}

.contact-header span {
    color: #ff1f1f;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-header h2 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin: 15px 0;
}

.contact-header p {
    color: #d6d6d6;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-main-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff1f1f, #b90000);
    color: #fff;
    padding: 18px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.35);
    transition: 0.3s ease;
}

.contact-main-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.55);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: linear-gradient(180deg, #151515, #080808);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    min-height: 210px;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 0 28px rgba(255, 0, 0, 0.25);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff2a2a, #9f0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.55);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

.contact-card strong {
    display: block;
    color: #ff1f1f;
    font-size: 1.4rem;
    margin: 18px 0;
}

.contact-card-btn {
    display: inline-block;
    background: #e60000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.contact-card li {
    margin: 12px 0;
    color: #ddd;
}

.contact-card li::before {
    content: "✓";
    color: #ff1f1f;
    font-weight: bold;
    margin-right: 8px;
}

.contact-card small {
    color: #ff1f1f;
    font-weight: 700;
}

.contact-benefits {
    margin-top: 25px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
    background: #090909;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-cards,
.contact-benefits {
    grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 600px) {
    .contact-section {
    padding: 60px 16px 30px;
}

.contact-cards,
.contact-benefits {
    grid-template-columns: 1fr;
}

.contact-main-btn {
    width: 100%;
    text-align: center;
}

}

.whatsapp-float {
    position:fixed;
    bottom:25px;
    right:25px;
    width:56px;
    height:56px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:9999;
    transition:.3s;
    animation:waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform:scale(1.12);
    background:#20ba5a;
}

@keyframes waPulse {
    0% {
    transform:scale(1);
}

50% {
    transform:scale(1.10);
}

100% {
    transform:scale(1);
}

}

.videos-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(7px);
}

.videos-box {
    width: 70%;
    max-width: 90vw;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(37,211,102,.16), transparent 35%),
        linear-gradient(180deg, #151515, #080808);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 30px;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 90px rgba(0,0,0,.65);
}

.videos-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.videos-box h2 {
    font-size: 36px;
    margin-bottom: 14px;
}

.videos-intro {
    max-width: 680px;
    margin: 0 auto 34px;
    color: #cfd6e6;
    font-size: 17px;
    line-height: 1.6;
}

.videos-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.main-video-card {
    min-height: 240px;
    padding: 24px 28px;
    border-radius: 22px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
}

.main-video-card:hover {
    transform: translateY(-8px);
    border-color: #25D366;
    box-shadow: 0 18px 45px rgba(37,211,102,.22);
}

.main-video-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 42px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.08);
}

.alarm-video .main-video-icon {
    background: rgba(229,57,53,.18);
}

.platform-video .main-video-icon {
    background: rgba(37,211,102,.16);
}

.main-video-card h3 {
    font-size: 25px;
    margin-bottom: 14px;
}

.main-video-card p {
    color: #cfd6e6;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 18px;
}

.main-video-card span {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    background: #25D366;
    color: #07120b;
    font-weight: 900;
}

.platform-video span{
    background:#25D366;
    color:#07120b;
    font-weight:900;
}

@media (max-width:768px) {
    .videos-box {
    padding: 34px 20px;
}

.videos-main-grid {
    grid-template-columns: 1fr;
}

.videos-box h2 {
    font-size: 28px;
}

}

/*==================================================
  REDES SOCIALES
==================================================*/

.social-section-contact{
    margin-top:30px;
    text-align:center;
}

.social-section-contact h3{
    font-size:30px;
    margin-bottom:12px;
}

.social-section-contact p{
    color:#cfcfcf;
    margin-bottom:28px;
}

.social-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.social-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:14px 24px;

    border-radius:40px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);

    color:#fff;
    text-decoration:none;
    font-weight:700;

    transition:.3s;
}

.social-link i{
    font-size:22px;
}

.social-link:hover{
    transform:translateY(-4px);
    border-color:#22C55E;
}

/*==================================================
  FOOTER
==================================================*/

footer {
    background: #050505;
    padding: 35px 20px 25px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand img {
    width: 170px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #cfcfcf;
    max-width: 620px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-social {
    margin-top: 10px;
}

.footer-social h4 {
    margin-bottom: 14px;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-copy {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #aaa;
    font-size: 14px;
}

/* ==========================
   RESPONSIVE TARJETAS INICIO
========================== */

@media (max-width: 768px){

    .stats-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .stat-card{
        padding:22px 16px;
    }

    .stat-card h3{
        font-size:32px;
    }

    .stat-card h4{
        font-size:22px;
    }

    .stat-card p{
        font-size:15px;
    }

}

/* ==========================
   HEADER RESPONSIVE CELULAR
========================== */

@media (max-width: 768px) {

    header .container {
        width: 100%;
        padding: 0 8px;
        gap: 6px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .logo img {
        width: 115px;
        min-width: 115px;
    }

    .menu ul {
        gap: 14px;
        flex-wrap: nowrap;
    }

    .menu a {
        font-size: 12px;
        white-space: nowrap;
    }

    .header-buttons {
        gap: 6px;
        flex-shrink: 0;
    }

    .btn-emergency,
    .btn-login {
        padding: 9px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero {
        padding-top: 0px;
        min-height: auto;
        overflow: hidden;
    }

    body {
        padding-top: 62px;
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .hero-text {
        transform: none;
        max-width: 100%;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .message-item p {
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item p {
        font-size: 13px;
    }

.hero-phone{
    display:flex;
    justify-content:center;
    order:2;
    margin:25px auto;
}

.phone-animation-bg{
    width:220px;
    height:320px;
    transform:none;
}

.phone-image{
    width:180px;
    transform:none;
}

.hero-features{
    order:3;
}
}

@media (max-width: 768px) {

    .hero-text.fade-out {
        opacity: 1 !important;
        filter: none !important;
    }

}

@media (max-width: 768px) {

    .hero-bg{
        opacity: 0.47;
        background-size: 215%;
        background-position: center 5%;
    }

}

@media (max-width: 768px) {

    .hero-bg,
    .hero::before,
    .hero::after {
        pointer-events: none !important;
    }

    .hero-content {
        position: relative;
        z-index: 5;
    }

    .hero-buttons,
    .hero-buttons a {
        position: relative;
        z-index: 20;
        pointer-events: auto !important;
    }

}


@media (max-width:768px){

    .hero-buttons .btn-login{
        min-height: 48px;

        display:flex;
        justify-content:center;
        align-items:center;

        text-align:center;
        line-height:1.2;

        font-size:18px;
        font-weight:700;

        padding:12px 20px;
    }

}

@media (max-width:768px){

    .videos-modal{
        align-items:flex-start;
        overflow-y:auto;
        padding:15px 14px 25px;
    }

    .videos-box{
        width:100%;
        max-width:420px;
        max-height:none;
        padding:26px 18px;
        margin:0 auto 30px;
    }

    .videos-close{
        position:fixed;
        top:5px;
        right:18px;
        z-index:100000;
        background:#ff2d2d;
        color:#fff;
    }

    .videos-main-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .main-video-card{
        min-height:auto;
        padding:28px 22px;
    }
}

/* ==========================
   MENÚ HAMBURGUESA CELULAR
========================== */

.menu-toggle{
    display:none;
}

.menu-mobile-only{
    display:none;
}

@media (max-width:768px){

    header .container{
        position:relative;
        justify-content:space-between;
        overflow:visible;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:44px;
        height:44px;
        border:none;
        border-radius:12px;
        background:rgba(255,255,255,.08);
        color:#fff;
        font-size:28px;
        font-weight:800;
        cursor:pointer;
        z-index:10001;
    }

    .menu{
        position:absolute;
        top:62px;
        left:0;
        width:100%;
        display:none;
        background:rgba(8,10,15,.98);
        border-top:1px solid rgba(255,255,255,.08);
        border-bottom:1px solid rgba(255,255,255,.08);
        padding:14px;
        z-index:10000;
    }

    .menu.active{
        display:block;
    }

    .menu ul{
        flex-direction:column;
        gap:0;
    }

    .menu ul li a{
        display:block;
        width:100%;
        padding:15px 12px;
        font-size:17px;
        font-weight:700;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .header-buttons{
        display:none;
    }

    .menu-mobile-only{
        display:block;
    }

    .menu-emergency{
        background:#E53935 !important;
        color:#fff !important;
        border-radius:12px;
        text-align:center;
        margin-top:12px;
    }

    .menu-login{
        background:#22C55E !important;
        color:#07120b !important;
        border-radius:12px;
        text-align:center;
        margin-top:12px;
    }
}

/* =====================================
   CONTADOR DE VISITANTES
===================================== */

.visitor-counter {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 28px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    width: fit-content;
    max-width: 430px;
}

@media (max-width: 768px) {
    .visitor-counter {
        width: calc(100% - 32px);
        max-width: 420px;
        margin: 24px auto 28px auto;
        padding: 22px 18px;
    }
}

.visitor-icon{

    font-size:42px;

}

.visitor-text{

    text-align:left;

}

.visitor-text small{

    display:block;

    color:#ddd;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.visitor-number{

    font-size:42px;

    font-weight:800;

    color:#22C55E;

    line-height:1;

    margin:5px 0;

}

.visitor-text span{

    color:#eee;

    font-size:15px;

}