/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fa;
    color: #2c2c2c;
}


/* Topbar */
.topbar {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo */
.logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

/* Menu Icon */
.menu-icon {
    display: none;
}

#menu-toggle {
    display: none;
}

.menu {
    display: flex;
    gap: 30px;
    font-size: 1.1em;
}

.menu a {
    color: #1e2a38;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.menu a i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.menu a:hover {
    color: #00bcd4;
    transform: translateY(-4px);
}

.menu a:hover i {
    transform: translateX(5px);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;              /* para que el ::before se posicione dentro */
    text-align: center;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    color: white;
    /* quita cualquier background aquí */
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;                        /* top:0; right:0; bottom:0; left:0; */
    background: url('http://aidcom.com.ar/edificio.jpg') center/cover no-repeat;
    filter: brightness(70%);         /* baja “opacidad” al 50% */
    z-index: -1;                     /* queda detrás del texto */
  }
  


.hero h1 {
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover h1 {
    transform: translateY(-20px);
}

.hero:hover p {
    opacity: 1;
}

/* Opciones */
.options {
    padding: 70px 20px;
    background: linear-gradient(to bottom, #f0f4f8, #ffffff);
    text-align: center;
}
.option main section div a{
    text-decoration: none;
}
.options h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #1e2a38;
    letter-spacing: 0.5px;
}

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


.option-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.option-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 10px;
}

.option-card h3 {
    font-size: 1.3em;
    color: #1e2a38;
    margin-bottom: 12px;
}


.option-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}

.footer {
    background: linear-gradient(135deg, #1e2a38, #1e3d56, #0d1b2a);
    color: white;
    padding: 40px 20px 0;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    border-top: 5px solid #00bcd4;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-out;
}

.footer:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
    border-top-color: #1ab4ff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column h4 {
    color: #00bcd4;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    font-size: 1em;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #1ab4ff;
    transform: translateX(5px);
}

.footer-column p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}

.location-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background-color: #16222d;
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9em;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Menu responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    #menu-toggle:checked+.menu {
        display: flex;
    }

    .menu a {
        text-align: center;
        padding: 15px 0;
    }

    .submenu {
        position: static;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px 0;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-column {
        align-items: center;
    }

    .location-map iframe {
        height: 150px;
    }

    .footer-bottom {
        font-size: 0.8em;
    }
}
.ver-mas-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ver-mas-btn:hover {
    background: linear-gradient(135deg, #0097a7, #00796b);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}