@import "normalize.css";
@import "home.css";
@import "servicios.css";

* {
    padding: 0;
    margin: 0;
    /*font-size: 16px;*/
    box-sizing: border-box;
}

html, body {
    overflow-y: hidden;
}

body {
    width: 100%;
    height: 100svh;
    font-family: "Exo 2", Montserrat, Geneva, Tahoma, sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.my-header {
    width: 100%;
    display: flex;
    padding: 1rem;
}

.logotipo {
    width: 60%;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background-color: white;
}

.title {
    font-size: 1.2rem;
    color: dimgray;
    text-align: center;
}

.slogan {
    font-weight: 500;
}

.logo-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background-color: yellow;*/
}

.title-footer {
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    font-weight: 700;
    padding: 0.75rem
}

:root {
    --rgb-primary: 9, 0, 255;
    --rgb-contrast-1: 255, 111, 0;
    --rgb-contrast-2: 255, 215, 0;

    --primary-color: rgb(var(--rgb-primary));
    --contrast-color: rgb(var(--rgb-contrast-1));
    --contrast-color-2: rgb(var(--rgb-contrast-2));
}

.main-section {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: whitesmoke;
    overflow-y: auto;
}


.actions-row {
    display: flex;
    align-items: center;
    margin: 1rem;
    justify-content: space-between;
}

/*.action-icon {*/
/*    width: 42px;*/
/*    height: 42px;*/
/*    fill: black;*/
/*}*/

.action-icon {
    width: 42px;
    height: 42px;
    /* Ensure the fill is dark for contrast against the light glass */
    fill: black;
}

/*.action-icon-button {*/
/*    padding: 0.25rem;*/
/*    border-radius: 1rem;*/
/*    border: 2px solid darkgray;*/
/*    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);*/
/*    background-color: white;*/
/*}*/

.action-icon-button {
    /* Base Glass/Blur retained */
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);

    /* REMOVED: Explicit border */
    border: none;

    /* SHADOWS: Define shape and lift using soft shadows only */
    box-shadow: /* Outer soft lift (subtle dark shadow) */ 0 4px 10px rgba(0, 0, 0, 0.15),
        /* Inner soft light edge (replaces the thin white border) */ inset 0 0 0 1px rgba(255, 255, 255, 0.7);

    padding: 0.5rem;
    border-radius: 50%; /* Circular button */
    transition: all 0.3s ease-out;
}

/*.action-icon-button:active {*/
/*    translate: 1px 2px;*/
/*}*/

.spacer-expand {
    flex-grow: 1;
    /*background-color: blue;*/
}

.spacer-expand {
    height: 1rem;
    width: 1rem;
    /*background-color: blue;*/
}



/*.highlighted-content {*/
/*    background-color: var(--contrast-color);*/
/*}*/

/*.highlighted-content:hover {*/
/*    border: 3px solid darkgray;*/
/*    !*background-color: blue;*!*/
/*}*/

/*.non-highlighted-content {*/
/*    background-color: white;*/
/*}*/

/*.non-highlighted-content:hover {*/
/*    background-color: rgba(255,255,255,0.2);*/
/*}*/

/* --- Highlighted Button --- */

.highlighted-content {
    /* Uses a defined ring shadow in the contrast color for the highlight */
    box-shadow: 0 0 0 3px var(--contrast-color), /* Primary colored ring shadow */ 0 4px 10px rgba(0, 0, 0, 0.15); /* Retain outer lift */
}

.highlighted-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px var(--contrast-color), /* Thicker, brighter glow */ 0 10px 18px rgba(0, 0, 0, 0.25); /* Enhanced lift */
}

/* --- Non-Highlighted Button --- */

.non-highlighted-content:hover {
    background-color: rgba(255, 255, 255, 0.3);
    /* Subtle primary color ring glow on hover */
    box-shadow: 0 0 0 3px var(--primary-color),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Active State (Press) --- */

.action-icon-button:active {
    transform: scale(0.95);
    /* Active state removes external shadow for a "pushed in" effect */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}


/* --- Active State (Press) --- */

.action-icon-button:active {
    /* Subtle push down on press */
    transform: scale(0.95);
    /* Remove the old translate: 1px 2px; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav {
    padding-block: 2rem;
    padding-inline: 0.25rem;
    border-top: 2px solid lightgray;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    background-color: black;
}

nav ul {
    display: flex;
    gap: 1rem;
}

nav ul li {
    list-style-type: none;
}

.nav-icon-button {
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    color: white;
}

.highlighted-container {
    background-color: var(--contrast-color);
    color: black;
}
