body {
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

/* === HERO === */
header {
    height: 100vh;
    background: url('../img/baritel-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.baritel-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.baritel-content p {
    color: #fff;
}

/* Hace que la imagen sea responsiva */
.logo-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* centra el logo */
}

/* Opcional: puedes ajustar tamaños según el dispositivo */
@media (max-width: 768px) {
    .logo-responsive {
        width: 70%;
        /* un poco más pequeña en tablets */
    }
}

@media (max-width: 480px) {
    .logo-responsive {
        width: 80%;
        /* más pequeña en móviles */
    }
}

header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

header .btn-primary {
    background-color: #058573;
    border: none;
    transition: background 0.3s ease;
}

header .btn-primary:hover {
    background-color: #058573;
}

/* === SECCIONES === */
section {
    padding: 20px 10px;
}

section:nth-child(even) {
    background-color: #f8f8f8;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 30%, #058573 50%);
    opacity: 0.74;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    pointer-events: none;
}


.card-column {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-img-container {
    position: relative;
    overflow: visible;
    border-radius: 10px;
}

.card-img-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.icon-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #058573;
    color: #fff;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

h4 {
    margin-top: 50px;
    font-weight: 600;
    color: #058573;
}

p {
    color: #555;
}