* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    text-align: center;
}

/* Banner */
.banner {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Logo y Perfil */
.profile {
    margin-top: -60px; /* Sube el logo sobre el banner */
}

.logo-container img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /*border: 5px solid #000;*/
    background-color: #fff;
}

h1 { margin-top: 15px; font-size: 1.5rem; }
.slogan { font-style: normal;
    font-weight: 600;
    white-space: pre-line;
    max-width: 100%;
   margin-bottom: 15px; 
   font-size: 14px;
}

/* Iconos Sociales */
.social-icons { font-size: 1.8rem; margin-bottom: 30px; }
.social-icons a { color: #fff; margin: 0 10px; text-decoration: none; }

/* Descripción y Lista */
.description { 
	text-align: center;
    white-space: pre-line;
    font-style: normal;
	padding: 0 40px; 
	max-width: 100%; 
	margin: 0 auto; }
.description h3 { }
.description p { font-size: 16px; line-height: 1.4; color: #eee; font-weight: 600; }

.features {
    list-style: none;
    padding-bottom: 50px;
	font-style: normal;
    font-weight: 600;
    max-width: 100%;
	font-size: 16px;
    line-height: 1.5;
}
.features li { }

/* --- MENÚ OVERLAY --- */
.menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    z-index: 100;
}

.menu-icon span {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    margin: 3px 0;
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MENU */
.mobile-menu {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #111;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  transition: .4s;
  z-index: 1000;
}

.mobile-menu.active {
  bottom: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

.menu-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.menu-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.menu-socials a {
  color: #fff;
  font-size: 1.4rem;
}


.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: #fff;
  font-size: 24px;
  transition: transform 0.2s;
	text-decoration: none;
}

.socials a:hover {
  transform: scale(1.2);
}


.close-btn {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 2rem; cursor: pointer;
}

.menu-overlay nav a {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    margin: 20px 0;
    text-transform: uppercase;
}


.icon-anim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.icon-anim:active {
  transform: scale(0.85);
  opacity: 0.7;
}

/* Hover solo en PC */
@media (hover: hover) {
  .icon-anim:hover {
    transform: scale(1.15);
  }
}


/* Responsivo para PC */
@media (min-width: 768px) {
    .banner { height: 213px; }
	.slogan { font-size: 16px;}
.description { padding: 0 60px; width: 700px;}
	.description p, .features { font-size: 20px;}
	.logo-container img { width: 210px; height: 210px; }
}