@charset "UTF-8";

/*
Theme Name: Green White
Theme URI: http://www.greenwhiteenergy.com
Author: Eiduo
Author URI: https://www.agenciaeiduo.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.20.0.1677067472
Updated: 2026-01-26 12:04:31

*/

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-color: #112b45!important;
  --secondary-color: #0ca5d7!important;

  --dark-color: #0D0D0D;
  --medium-color: #757075;
  --light-color: #FFFFFF;

  --weight-light: 400;
  --weight-regular: 500;
  --weight-bold: 700;


  --font-primary: "Antonio", sans-serif;
  --font-secondary: "Open Sans", sans-serif;
} 

/* =========================
   GENERAL
========================= */
body {
    background-color: var(--light-color);
	color: var(--dark-color);
	font-family: var(--font-secondary);
    line-height: 1.7;
}

/* =========================
   FUENTES
========================= */
.font-primary { font-family: var(--font-primary)!important;}
.font-secondary { font-family: var(--font-secondary)!important;}

/* =========================
   COLORES
========================= */
.bg-primary { background-color: var(--primary-color)!important; color: var(--light-color)!important;}

.text-color-primary { color: var(--primary-color);}
.text-color-secondary { color: var(--secondary-color);}
.text-color-medium { opacity: 0.5;}
.text-color-light { color: var(--light-color);}

/* =========================
   BOTONES
========================= */
.btn { padding:0.8rem 1.8rem; border-radius:100px!important; border:2px solid var(--primary-color); text-transform:uppercase!important;}
.btn--info { background: transparent!important; color:var(--primary-color)!important; border-color: var(--primary-color)!important;}
.btn--call { background: var(--primary-color)!important; color:var(--light-color)!important; border-color: var(--primary-color)!important; }


/* =========================
   IMAGES
========================= */
img { max-width: 100%; height: auto;}
img.rounded { border-radius: 14px!important;}
/* =========================
   REVIEWS
========================= */
.rated--stars{ color:#d25525!important;}

/* =========================
   LISTAS
========================= */
ul.list-items {
    list-style: none;
    padding-left: 0px !important;
}

.list-items .list-item { color: var(--primary-color); font-size:21px; }

.list-items .list-item a { text-decoration: none!important; color: var(--primary-color)!important;}

.navbar.navbar-expand-lg  .navbar-collapse{ justify-content: end!important;}

.navbar-toggler { color: var(--light-color); background-color: var(--light-color);}

ul.navbar-nav li.nav-item a.nav-link { color: var(--light-color)!important;}


.navbar-scrolled {
    background-color: var(--primary-color);
}

.navbar-scrolled ul.navbar-nav li.nav-item a.nav-link { color: #F2F0EB !important;}

/* =========================
   HERO
========================= */
.hero-section {
	display: flex;
	height: 90vh;
    position: relative;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2) ), url('/assets/img-1.webp') center right / cover no-repeat;
    background-color: var(--primary-color);
}

.hero-section .container { margin-top: auto; margin-bottom:4rem;}



.hero-section h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-section p {
    color: var(--light-color);
    max-width: 520px;
}

/* =========================
   SECCIONES
========================= */
.section-padding {
    padding: 90px 0;
}

/* Fondo azul corporativo (como la 2ª imagen) */
.bg-light {
    background-color: #f6f9fc !important;
}

/* =========================
   BLOQUES DE SERVICIO
========================= */
.service-block h2 {
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.service-block p {
    font-size: 0.95rem;
    color: #4a5d73;
}

.service-block ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.service-block ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #1f2d3d;
}

/* Imagen estilo “flotante premium” */
img.rounded {
    border-radius: 14px;
}

/* =========================
   TARJETAS DE SERVICIOS
========================= */
.service-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: box-shadow .25s ease;
    cursor: pointer;
    position: relative;
}

/* Hover solo cuando NO está activa */
.service-card:not(.active):hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Contenido desplegable */
.service-card-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: 
        max-height 0.45s ease,
        opacity 0.25s ease;
}

/* Estado activo */
.service-card.active .service-card-content {
    max-height: 500px; /* margen cómodo */
    opacity: 1;
}

/* Lista interna */
.service-card-content ul {
    padding-left: 1.1rem;
    margin: 1rem 0 0 0;
    text-align: left;
}

.service-card-content ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #1f2d3d;
}

/* Separador visual elegante */
.service-card.active .service-card-content::before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 1rem 0;
}
/* Indicador del Droppable */
.service-card h4 {
    position: relative;
    margin-bottom: 0.5rem;
}

/* Flecha */
.service-card h4::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}


/* Estado abierto */
.service-card.active h4::after {
    transform: translateY(-50%) rotate(-90deg);
}
.service-image img {
    box-shadow:
        0px 0px 8px -2px var(--primary-color), /* trazo sutil izquierda/abajo */
        0 18px 40px rgba(0,0,0,0.10);      /* profundidad suave */
}
/* =========================
   CONTACTO
========================= */
/* =========================
   CONTACTO
========================= */
.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #1f2d3d;
}

/* Imagen contacto */
.contact-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(13, 42, 71, 0.18);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #1f2d3d;
}

/* =========================
   TESTIMONIOS
========================= */
section.bg-light h2 {
    color: #0d2a47;
}

section.bg-light img.rounded-circle {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* =========================
   FOOTER
========================= */
.footer {
    background-color: #0d2a47;
    color: #c9d6e2;
}

.footer p {
    font-size: 0.85rem;
    margin: 0;
}


@media (min-width: 992px) {

    .service-block .row {
        align-items: stretch;
    }

    .service-image {
        position: relative;
        margin-right: calc((100vw - 100%) / -2);
        width: 50vw;              /* ocupa media pantalla real */
        margin-left: auto;        /* se empuja a la derecha */
        display: flex;
        align-items: stretch;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
