/*
Theme Name: AC Prevención
Author: Tu Nombre
Version: 1.0
*/

:root {
    --verde: #2e7d32;
    --verde-sec: #4caf50;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3 {
    color: var(--verde);
    text-align: center;
}

.hero {
    text-align: center;
    background: #f5f5f5;
}

.hero img {
    max-width: 500px;
    width: 90%;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
}

.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
    background: white;
}

.card:hover {
    background: var(--verde);
    color: white;
    transform: translateY(-5px);
}

.detalle-servicio {
    background: #f9f9f9;
    border-radius: 15px;
    margin-top: 40px;
}

.detalle-servicio h3 {
    font-size: 32px;
    color: var(--verde);
    margin-bottom: 25px;
    text-align: left;
}

.detalle-servicio p,
.detalle-servicio li {
    font-size: 18px;
    line-height: 1.7;
}

.detalle-servicio ul {
    margin-top: 20px;
    padding-left: 20px;
}

html {
    scroll-behavior: smooth;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
}
/* =========================
   MODAL EQUIPO
========================= */

.modal-equipo {

    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0,0,0,0.7);

    z-index: 999999;

    display: none;

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

    padding: 20px;

    box-sizing: border-box;

    overflow-y: auto;
}

/* ACTIVO */

.modal-equipo.activo{
    display:flex;
}

/* CONTENIDO */

.modal-contenido{

    background: white;

    width: 100%;
    max-width: 900px;

    border-radius: 15px;

    padding: 40px;

    position: relative;

    box-shadow: 0 10px 40px rgba(0,0,0,0.4);

    animation: aparecerModal .3s ease;
	
	font-size: 15px;
}

.modal-contenido h2{
    font-size: 28px;
}

.modal-contenido h3{
    font-size: 20px;
}

/* BOTON CERRAR */

.cerrar-modal{

    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 35px;

    cursor: pointer;

    color: #333;
}

/* ANIMACION */

@keyframes aparecerModal{

    from{
        opacity:0;
        transform: translateY(-20px);
    }

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

}

/* MOBILE */

@media(max-width:768px){

    .modal-contenido{
        padding: 25px;
        width: 95%;
    }

    .modal-contenido p{
        font-size: 16px;
    }

}