html{
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    margin:0;
    min-height:100vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.55)
        ),
        url("background.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    font-family:Orbitron, sans-serif;
}
.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.content h1{
    font-family: 'Audiowide', sans-serif;
    font-size: 90px;
    color: #FFD700;

    text-shadow:
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 40px rgba(255,215,0,0.8);

    letter-spacing: 6px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.content h2{
    margin-top:15px;
    font-size:28px;
    color:white;
}

.content p{
    margin-top:25px;
    font-size:20px;
    max-width:700px;
}

.buttons{
    margin-top:40px;
}

.buttons a{
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    margin:10px;
    font-weight:bold;
}

.call-btn{
    background:#FFD700;
    color:black;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:transparent;
backdrop-filter:blur(2px);
}

.content{
    padding:40px;
    border-radius:25px;
    background:rgba(0,0,0,0.10);
    backdrop-filter:blur(8px);
}


h1{
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #FFD700;
    text-shadow:
        0 0 10px rgba(255,215,0,0.8),
        0 0 20px rgba(255,215,0,0.6),
        0 0 40px rgba(255,215,0,0.4);
    margin-bottom: 15px;

}

h2{
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

p{
    font-size:20px;
    color:#ccc;
    margin-bottom:40px;
}

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

.buttons a{
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.call-btn{
    background:#FFD700;
    color:black;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

.buttons a:hover{
    transform:translateY(-5px);
}   
.logo{
    width: 180px;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.03);
    }
    100%{
        transform: scale(1);
    }
}

.content h1{
    font-size:70px;
    color:#FFD700;
    text-shadow:
        0 0 10px rgba(255,215,0,0.8),
        0 0 20px rgba(255,215,0,0.6),
        0 0 40px rgba(255,215,0,0.4);


}.gate-container{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:9999;
}

.gate-left,
.gate-right{
    position:absolute;
    top:0;
    width:50%;
    height:100%;

    background:rgba(90,110,130,0.20);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    box-shadow:
        inset 0 0 50px rgba(255,255,255,0.05),
        inset 0 0 120px rgba(255,255,255,0.03);

    animation-duration:3s;
    animation-fill-mode:forwards;
    overflow:hidden;
}.gate-left{
    left:0;
    animation-name:openLeft;
}

.gate-right{
    right:0;
    animation-name:openRight;
}.gate-left::after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:10px;
    height:100%;
    background:#2b2b2b;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
}

.gate-right::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:10px;
    height:100%;
    background:#2b2b2b;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
}

@keyframes openLeft{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

@keyframes openRight{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(100%);
    }
}.gate-left::after,
.gate-right::before{
    content:'';
    position:absolute;
    top:0;
    width:12px;
    height:100%;
    background:linear-gradient(
        to right,
        #222,
        #555,
        #222
    );
}

.gate-left::after{
    right:0;
}

.gate-right::before{
    left:0;
}.gate-left::before,
.gate-right::after{
    content:'';
    position:absolute;
    top:-20%;
    left:-30%;
    width:40%;
    height:140%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transform:rotate(20deg);
}.sensor{
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);

    width:180px;
    height:30px;

    background:linear-gradient(
        to bottom,
        #555,
        #222
    );

    border-radius:6px;

    box-shadow:
        0 0 20px rgba(255,215,0,0.4);
}

.sensor::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:50%;
    transform:translateX(-50%);

    width:12px;
    height:12px;
    border-radius:50%;

    background:#FFD700;

    box-shadow:
        0 0 10px #FFD700,
        0 0 20px #FFD700;
}.services{
    padding:100px 50px;
    background:transparent;
    text-align:center;
}

.services h2{
    font-size:48px;
    color:#FFD700;
    margin-bottom:60px;

    width:100%;
    text-align:center;

    display:flex;
    justify-content:center;
    align-items:center;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.service-card{
    background:rgba(255,255,255,0.05);
    padding:40px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(255,215,0,0.2);
}

.service-card h3{
    color:#FFD700;
    margin-bottom:20px;
}.portfolio{
    padding:100px 50px;
    background:transparant;
    text-align:center;
}

.portfolio h2{
    color:#FFD700;
    font-size:50px;
    margin-bottom:50px;
}

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

.portfolio-card{
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(255,215,0,0.2);
}

.portfolio-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.portfolio-card h3{
    color:#FFD700;
    margin:20px 0 10px;
}

.portfolio-card p{
    padding:0 20px 20px;
}
.top-bar{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
background: rgba(30, 30, 30, 0.45);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255,215,0,0.4);
    

    border-bottom: 2px solid #FFD700;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000;
}

.nav-links{
    display:flex;
    gap:50px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#FFD700;
}.service-card{
    opacity: 0;
    transition: all 1s ease;
}

.from-left{
    transform: translateX(-150px);
}

.from-right{
    transform: translateX(150px);
}

.show{
    opacity: 1;
    transform: translateX(0);
}.legal-footer{
    background:#0a0a0a;
    color:#fff;
    text-align:center;
    padding:30px 20px;
    border-top:1px solid rgba(212,175,55,.25);
}

.legal-links{
    margin-bottom:15px;
}

.legal-links a{
    color:#d4af37;
    margin:0 12px;
    text-decoration:none;
    transition:.3s;
}

.legal-links a:hover{
    color:#fff;
}

.legal-footer p{
    color:#888;
    font-size:14px;
}.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    background:#111;
    color:white;
    padding:20px;
    border:1px solid #d4af37;
    border-radius:12px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.cookie-buttons{
    margin-top:15px;
}

.cookie-buttons button{
    background:#d4af37;
    border:none;
    color:black;
    padding:10px 20px;
    margin-right:10px;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;

}.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 80px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 9998;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 42px;
    color: white;
}/* =====================================
   RESPONSIVE MOVIL - ITR SYSTEMS
===================================== */

@media (max-width: 768px) {
.portfolio h2{
    font-size: 32px;
 }   
    .services h2{
    font-size:32px;

}
    /* Menú superior */
    .top-bar {
        padding: 15px 10px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 14px;
    }

    /* Logo */
    .logo {
        width: 140px;
    }

    /* Título principal */
    .hero h1 {
        font-size: 3rem;
        line-height: 1;
    }

    /* Subtítulo */
    .hero h2 {
        font-size: 1.3rem;
        padding: 0 20px;
    }

    /* Descripción */
    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Botones */
    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 90%;
        margin: auto;
    }

    .buttons a {
        width: 100%;
        text-align: center;
        padding: 15px;
        box-sizing: border-box;
    }

    /* Servicios */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    /* Trabajos */
    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .portfolio-card img {
        width: 100%;
        height: auto;
    }

    /* Footer */
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Botón flotante WhatsApp */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 100px;
        right: 20px;
        font-size: 28px;
    }

    /* Banner cookies */
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 14px;
    }

}.scroll-down {
    font-size: 40px;
    color: #d4af37;
    text-align: center;
    margin-top: 30px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}.scroll-down {
    text-align: center;
    margin-top: 25px;
    font-size: 32px;
    color: #d4af37;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}@media (max-width: 768px) {

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px;
        font-size: 11px;
        border-radius: 10px;
    }

    .cookie-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .cookie-buttons button {
        padding: 8px 14px;
        font-size: 11px;
    }
}.contact-page{
    min-height: 100vh;
    background: url('background.png') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    color: white;
}

.contact-page h1{
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 30px;
    text-shadow: 0 0 20px #d4af37;
}

.contact-page p{
    font-size: 22px;
    margin: 15px 0;
}

.contact-page .buttons{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}@media (max-width:768px){

    .contact-page h1{
        font-size: 36px;
    }

    .contact-page p{
        font-size: 18px;
    }

    .contact-page .buttons{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .contact-page .call-btn,
    .contact-page .whatsapp-btn{
        width: 90%;
        max-width: 320px;
    }
}.legal-page{
    min-height:100vh;
    background:#0a0a0a;
    color:white;
    padding:40px;
    font-family:'Orbitron', sans-serif;
}

.legal-page h1{
    color:#d4af37;
    margin-bottom:30px;
}/* TITULOS PAGINAS LEGALES */

.legal-page h2{
    color:#FFD700;
    font-size:30px;
    text-transform:uppercase;
    margin-top:50px;
    margin-bottom:20px;
    text-shadow:0 0 15px #FFD700;
    border-left:4px solid #FFD700;
    padding-left:20px;
}

.legal-page p{
    line-height:1.8;
    margin-bottom:20px;
}

.legal-page a{
    color:#d4af37;
    text-decoration:none;
    font-weight:bold;
}.legal-page{
    max-width: 1000px;
    margin: auto;
    padding: 60px 30px;
}

.legal-page h1{
    font-size: 70px;
    color: #d4af37;
    text-shadow: 0 0 25px rgba(212,175,55,.7);
    margin-bottom: 50px;
}

.legal-page p{
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
}

.legal-page a{
    display: inline-block;
    margin-top: 30px;
}   
@media (max-width:768px){

    .legal-page h1{
        font-size: 42px;
    }

    .legal-page p{
        font-size: 18px;
    }
 } 
.review-btn{
    display:block;
    width:320px;
    max-width:90%;
    margin:20px auto;
    padding:15px 20px;
    text-align:center;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
    font-size:16px;
    transition:0.3s;
    box-shadow:0 0 20px rgba(212,175,55,0.4);
}

.review-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 30px rgba(212,175,55,0.8);
 }   
.seo-local{
    max-width:800px;
    margin:40px auto;
    padding:20px;
    text-align:center;
    opacity:0.65;
}

.seo-local h2{
    color:#d4af37;
    font-size:22px;
    margin-bottom:20px;
}

.seo-local p{
    color:#ccc;
    line-height:1.6;
    font-size:13px;
    margin-bottom:15px;
}

.seo-local h2{
    color:#d4af37;
    margin-bottom:30px;
    font-size:2rem;
}

.seo-local p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
}/* =========================
   MENÚ HAMBURGUESA
========================= */

.menu-toggle{
    display: none;
    font-size: 32px;
    color: #d4af37;
    cursor: pointer;
}

/* Móvil */
@media (max-width: 768px){

    .menu-toggle{
        display: block;
        text-align: right;
        padding: 15px 20px;
    }

   .nav-links{
    display: none;
    flex-direction: column;
    text-align: center;
    background: rgba(0,0,0,0.95);
    padding: 20px 0;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 9999;
}.nav-links a{
    display: block;
    width: 100%;
    padding: 15px 0;
}

    .nav-links.active{
        display: flex;
    }

    .nav-links a{
        padding: 15px;
        font-size: 18px;
    }
}html {
    scroll-behavior: smooth;
}/* ESTADÍSTICAS */
.stats{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:60px;
    padding:80px 20px;
    text-align:center;
}

.stat-item{
    animation:fadeUp 1s ease forwards;
}

.stat-item span{
    color:#FFD700;
    font-size:64px;
    font-weight:bold;
    text-shadow:
        0 0 10px #FFD700,
        0 0 25px #FFD700;
}

.stat-item p{
    color:white;
    font-size:18px;
    margin-top:10px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .stats{
        gap:35px;
    }

    .stat-item span{
        font-size:42px;
    }

    .stat-item p{
        font-size:14px;
    }
}/* FABRICANTES */

.brands{
    padding: 100px 20px;
    text-align: center;
}

.brands h2,
.brands-title{
    width:100%;
    display:block;
    text-align:center;
    color:#FFD700;
    font-size:48px;
    font-family:'Orbitron', sans-serif;
    text-transform:uppercase;
    margin-bottom:40px;
    text-shadow:
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 40px #FFD700;
}
/* FABRICANTES */

.brands{
    padding: 100px 20px;
    text-align: center;
}

.brands h2{
    font-size: 42px;
    color: #FFD700;
    margin-bottom: 60px;

    text-shadow:
        0 0 10px #FFD700,
        0 0 20px rgba(255,215,0,0.8);
}

.brands-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-item{
    padding: 20px 35px;
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50px;

    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.brand-item:hover{
    transform: translateY(-8px);
    color: #FFD700;

    box-shadow:
        0 0 20px rgba(255,215,0,0.5);
}.brands h2{
    font-size: 32px;
}

.brand-item{
    font-size: 18px;
    padding: 15px 25px;
}.brands{
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}

.brands h2{
    color:#FFD700;
    font-size:42px;
    margin-bottom:60px;
    text-shadow:0 0 20px #FFD700;
}

.brands-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    align-items:center;
    gap:40px;
    width:max-content;

    animation: scrollBrands 25s linear infinite;
}

.brands-track img{
    height:130px;
    width:auto;
    animation: floating 3s ease-in-out infinite;
    filter:drop-shadow(0 0 10px rgba(255,215,0,0.5));
    transition:0.3s;
}

.brands-track img:hover{
    transform:scale(1.15);
}

@keyframes scrollBrands{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@media (max-width:768px){

    .brands{
    padding: 60px 0;
    }
    .brands-track{
        gap:20px;
    }

    .brands-track img{
        height:85px;
    }

    .brands h2{
        font-size:38px;
    }

}.brands-title{
    width: 100%;
    text-align: center;
    color: #FFD700;
    font-size: 48px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    margin-bottom: 40px;

    text-shadow:
        0 0 10px #FFD700,
        0 0 20px #FFD700,
        0 0 40px rgba(255,215,0,0.8);
}

@media (max-width:768px){
    .brands-title{
        font-size: 32px;
    }
}    
.contact-form-section{
    padding:80px 20px;
    text-align:center;
}

.contact-form-section h2{
    font-size:48px;
    color:#FFD700;
    text-shadow:0 0 20px rgba(255,215,0,.7);
    margin-bottom:20px;
}

.contact-form-section p{
    color:white;
    font-size:18px;
    margin-bottom:40px;
}

.contact-form{
    max-width:700px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border-radius:12px;
    border:1px solid rgba(255,215,0,.3);
    background:rgba(255,255,255,.08);
    color:white;
    font-size:16px;
    font-family:'Orbitron',sans-serif;
}

.contact-form textarea{
    min-height:140px;
    resize:vertical;
}

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#FFD700;
    color:black;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(255,215,0,.5);
}@media (max-width: 768px) {

    .contact-form-section h2{
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .contact-form{
        width: 90%;
        max-width: 340px;
        margin: auto;
    }

    .contact-form input,
    .contact-form textarea{
        padding: 14px 18px;
        font-size: 15px;
    }

    .contact-form textarea{
        min-height: 120px;
    }

    .contact-form button{
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .contact-form-section{
        padding: 60px 20px;
    }

}@keyframes floating{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0px);
    }
}/* ===========================
   RESEÑAS PREMIUM
=========================== */

/* ===========================
   RESEÑAS PREMIUM
=========================== */

.reviews-section{
    padding:60px 20px;
    text-align:center;
    overflow:hidden;
}

.reviews-container{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.reviews-slider{
    position:relative;
    width:100%;
    height:650px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:visible;
}

/* TARJETAS */

.review-card{
    position:absolute;
    width:280px;
    opacity:0;
    filter:blur(6px);
    transform:scale(.75);
    transition:all .6s ease;
}

.review-card img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(212,175,55,.4);
}

/* TARJETA CENTRAL */

.review-card.active{
    opacity:1;
    filter:none;
    transform:translateX(0) scale(1.15);
    z-index:10;
}

/* TARJETA IZQUIERDA */

.review-card.left{
    opacity:.4;
    filter:blur(3px);
    transform:translateX(-340px) scale(.8);
    z-index:5;
}

/* TARJETA DERECHA */

.review-card.right{
    opacity:.4;
    filter:blur(3px);
    transform:translateX(340px) scale(.8);
    z-index:5;
}

/* BOTONES */

.review-btn-prev,
.review-btn-next{
    background:none;
    border:2px solid #d4af37;
    color:#d4af37;
    width:55px;
    height:55px;
    border-radius:50%;
    font-size:25px;
    cursor:pointer;
    transition:.3s;
}

.review-btn-prev:hover,
.review-btn-next:hover{
    background:#d4af37;
    color:black;
}

/* INDICADORES */

.review-dots{
    margin-top:50px;
}

.dot{
    width:14px;
    height:14px;
    background:#555;
    border-radius:50%;
    display:inline-block;
    margin:0 8px;
    transition:.3s;
}

.dot.active{
    background:#d4af37;
    transform:scale(1.4);
}

/* ===========================
   MÓVIL
=========================== */

@media(max-width:768px){

    .reviews-slider{
        height:450px;
        overflow:visible;
    }

    .review-card{
        width:72%;
        opacity:.25;
        filter:blur(4px);
        transition:all .6s ease;
    }

    .review-card.active{
        opacity:1;
        filter:none;
        transform:translateX(0) scale(1);
        z-index:10;
    }

    .review-card.left{
        opacity:.45;
        filter:blur(2px);
        transform:translateX(-48%) scale(.78);
        z-index:5;
    }

    .review-card.right{
        opacity:.45;
        filter:blur(2px);
        transform:translateX(48%) scale(.78);
        z-index:5;
    }

    .review-btn-prev,
    .review-btn-next{
        width:45px;
        height:45px;
        font-size:20px;
    }


}/* =========================
   GOOGLE RATING
========================= */

.google-rating{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:15px;
}

.google-logo{
    width:55px;
    margin-bottom:12px;
}

.google-score{
    font-size:42px;
    font-family:'Orbitron', sans-serif;
    font-weight:700;
    color:#d4af37;
    line-height:1;
}

.google-stars{
    color:#FFD700;
    font-size:28px;
    letter-spacing:5px;
    margin-top:10px;
}

.google-text{
    color:white;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    opacity:0.85;
    margin-top:10px;
}@media(max-width:768px){

    .google-logo{
        width:45px;
    }

    .google-score{
        font-size:32px;
    }

    .google-stars{
        font-size:22px;
        letter-spacing:3px;
    }

    .google-text{
        font-size:12px;
    }

}