@font-face {
  font-family: 'Made';
  src: url('/Fonts/MADE_Tommy_Soft_Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Made', sans-serif;
}

body {
    overflow: hidden;
}

.container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* Estilos para las secciones */
.section {
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.white-section {
    width: 50%;
    background-color: #fff;
}

.green-section {
    width: 50%;
    background-color: #4CAF50;
    border-radius: 80px 0 0 80px;
}

/* Animación al pasar el cursor */
.white-section:hover {
    width: 55%;
    cursor: pointer;
}

.green-section:hover {
    width: 55%;
    cursor: pointer;
}

/* Logo container */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

/* Estilos para la imagen del logo - AUMENTADO DE TAMAÑO */
.logo-container img {
    width: 200px; /* Aumentado de 160px a 200px */
    height: auto;
    max-height: 70px; /* Aumentado de 50px a 70px */
    object-fit: contain;
}

/* Contenido de las secciones */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

/* Círculo para los iconos - TAMAÑO AUMENTADO Y ESTANDARIZADO */
.circle-icon {
    width: 150px; /* Aumentado de 120px a 150px */
    height: 150px; /* Aumentado de 120px a 150px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Ajustes para las imágenes dentro de los círculos - TAMAÑO AUMENTADO */
.circle-icon img {
    width: 100px; /* Aumentado de 60px a 80px */
    height: 100px; /* Aumentado de 60px a 80px */
    object-fit: contain;
}

/* Estilos para el texto */
h2 {
    font-size: 24px;
    text-align: center;
    color: #4CAF50;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.green-section h2 {
    color: white;
}

/* Efecto hover en los elementos */
.section:hover .circle-icon {
    transform: scale(1.1);
}

.section:hover h2 {
    transform: translateY(5px);
}

/* Efecto de pulso en los círculos */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .white-section, .green-section {
        width: 100%;
        height: 50%;
    }
    
    .green-section {
        border-radius: 80px 80px 0 0;
    }
    
    .white-section:hover, .green-section:hover {
        width: 100%;
        height: 55%;
    }
    
    .logo-container {
        top: 15px;
        left: 15px;
    }
    
    .logo-container img {
        width: 160px; /* Aumentado de 120px a 160px */
        max-height: 60px; /* Aumentado de 40px a 60px */
    }
    
    .circle-icon {
        width: 120px; /* Ajustado para móviles */
        height: 120px; /* Ajustado para móviles */
    }
    
    .circle-icon img {
        width: 190px; /* Aumentado de 50px a 70px */
        height: 190px; /* Aumentado de 50px a 70px */
    }
}
@media (min-width: 1600px) {
  body {
    max-width: 1400px;
    font-size: 18px;
  }

  .contenedor-principal {
    padding: 0 80px;
    gap: 40px;
  }

  h1 {
    font-size: 3rem;
  }

  /* Ajusta más secciones si es necesario */
}