* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Arial’, sans-serif;
line-height: 1.6;
color: #333;
background: #ffffff;
min-height: 100vh;
padding: 10px;
max-width: 100%;
}
.container {
max-width: 100%;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
overflow: hidden;
border: 1px solid #f0f0f0;
}
.header {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
text-align: center;
padding: 40px 20px;
position: relative;
overflow: hidden;
}
.header::before {
content: ”;
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.header h1 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
margin-bottom: 15px;
position: relative;
z-index: 1;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.header p {
font-size: clamp(1rem, 2vw, 1.2rem);
opacity: 0.95;
position: relative;
z-index: 1;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
max-width: 100%;
margin: 0 auto;
}
.logo {
font-size: clamp(2.5rem, 5vw, 3.5rem);
margin-bottom: 10px;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-10px); }
60% { transform: translateY(-5px); }
}
.categories {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
padding: 40px 20px;
background: #fafafa;
}
.category-card {
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 2px solid transparent;
max-width: 100%;
}
.category-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7);
background-size: 200% 200%;
animation: gradientAnimation 3s ease infinite;
}
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.category-card:hover {
transform: translateY(-8px) scale(1.01);
box-shadow: 0 15px 35px rgba(0,0,0,0.12);
border-color: #667eea;
}
.category-icon {
font-size: clamp(2.5rem, 5vw, 3rem);
margin-bottom: 20px;
text-align: center;
display: block;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
}
.category-title {
font-size: clamp(1.2rem, 3vw, 1.4rem);
font-weight: bold;
margin-bottom: 15px;
color: #667eea;
text-align: center;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.category-description {
color: #555;
margin-bottom: 25px;
text-align: center;
line-height: 1.7;
font-size: clamp(0.9rem, 2vw, 1rem);
}
.price-section {
background: linear-gradient(135deg, #667eea, #764ba2);
border-radius: 10px;
padding: 20px;
margin-bottom: 25px;
text-align: center;
position: relative;
overflow: hidden;
}
.price-section::before {
content: ‘💰’;
position: absolute;
top: 10px;
right: 15px;
font-size: 1.2rem;
opacity: 0.3;
}
.price {
font-size: clamp(1.8rem, 4vw, 2rem);
font-weight: bold;
color: white;
margin-bottom: 8px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.price-note {
font-size: clamp(0.8rem, 2vw, 0.9rem);
color: #fff;
font-style: italic;
opacity: 0.9;
}
.payment-links {
display: flex;
flex-direction: column;
gap: 10px;
}
.payment-link {
display: block;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
text-decoration: none;
padding: 12px 20px;
border-radius: 8px;
text-align: center;
font-weight: bold;
font-size: clamp(0.9rem, 2vw, 1rem);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.payment-link::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.payment-link:hover::before {
left: 100%;
}
.payment-link:hover {
transform: scale(1.02);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
background: linear-gradient(45deg, #764ba2, #667eea);
}
.payment-link:active {
transform: scale(0.98);
}
.footer {
background: linear-gradient(135deg, #2c3e50, #34495e);
color: white;
text-align: center;
padding: 35px 20px;
}
.footer h3 {
margin-bottom: 20px;
color: #667eea;
font-size: clamp(1.3rem, 3vw, 1.6rem);
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer p {
font-size: clamp(0.9rem, 2vw, 1rem);
margin-bottom: 10px;
}
.contact-info {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
margin-top: 25px;
}
.contact-item {
display: flex;
align-items: center;
gap: 8px;
background: rgba(102, 126, 234, 0.1);
padding: 10px 15px;
border-radius: 8px;
transition: all 0.3s ease;
min-width: 0;
flex: 0 1 auto;
}
.contact-item:hover {
background: rgba(102, 126, 234, 0.2);
transform: translateY(-2px);
}
.contact-item span:first-child {
font-size: 1.2rem;
flex-shrink: 0;
}
.contact-item span:last-child {
font-size: clamp(0.8rem, 2vw, 0.9rem);
word-break: break-word;
}
.special-offer {
background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
color: white;
padding: 12px;
border-radius: 8px;
margin-bottom: 20px;
text-align: center;
font-weight: bold;
animation: pulse 2s infinite;
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
font-size: clamp(0.8rem, 2vw, 0.9rem);
}
@keyframes pulse {
0% { opacity: 1; transform: scale(1); }
50% { opacity: 0.9; transform: scale(1.01); }
100% { opacity: 1; transform: scale(1); }
}
.trust-indicators {
background: #f8f9fa;
padding: 30px 20px;
text-align: center;
border-top: 3px solid #667eea;
}
.trust-indicators h4 {
color: #667eea;
margin-bottom: 20px;
font-size: clamp(1.1rem, 3vw, 1.3rem);
}
.trust-icons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.trust-icon {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 15px;
border-radius: 10px;
background: white;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: all 0.3s ease;
min-width: 120px;
flex: 0 1 auto;
}
.trust-icon:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(102, 126, 234, 0.1);
}
.trust-icon span:first-child {
font-size: 1.5rem;
}
.trust-icon span:last-child {
font-size: clamp(0.7rem, 2vw, 0.8rem);
color: #666;
font-weight: bold;
text-align: center;
}
/* Responsive improvements */
@media (max-width: 768px) {
.container {
margin: 5px;
border-radius: 15px;
}
.categories {
grid-template-columns: 1fr;
padding: 30px 15px;
gap: 20px;
}
.category-card {
padding: 20px;
}
.contact-info {
flex-direction: column;
gap: 15px;
align-items: center;
}
.contact-item {
justify-content: center;
max-width: 280px;
width: 100%;
}
.trust-icons {
justify-content: space-around;
gap: 15px;
}
.trust-icon {
min-width: 100px;
padding: 12px;
}
}
@media (max-width: 480px) {
body {
padding: 5px;
}
.header {
padding: 30px 15px;
}
.categories {
padding: 25px 10px;
}
.category-card {
padding: 18px;
}
.payment-link {
padding: 10px 15px;
}
.footer {
padding: 25px 15px;
}
.trust-icons {
grid-template-columns: repeat(2, 1fr);
display: grid;
gap: 15px;
}
}
/* Ensure no horizontal scrolling */
html, body {
overflow-x: hidden;
max-width: 100%;
}
.container {
width: 100%;
max-width: 1200px;
}
Aplenguas – Pagos
Elige tu modalidad de aprendizaje y procede con el pago seguro
Clase Grupal
Aprende en grupo en un ambiente dinámico e interactivo.
Perfecto para practicar conversación y compartir la experiencia de aprendizaje.
Clase Grupal
Aprende en grupo en un ambiente dinámico e interactivo.
Perfecto para practicar conversación y compartir la experiencia de aprendizaje.
Clase Personalizada
Clases individuales a medida adaptadas a tus objetivos específicos.
Atención personalizada del profesor para un progreso óptimo.
Clase Personalizada
Clases individuales a medida adaptadas a tus objetivos específicos.
Atención personalizada del profesor para un progreso óptimo.
Clase Dual
Clases para dos personas para un aprendizaje colaborativo.
Ideal para parejas, amigos o colegas que desean progresar juntos.
Curso Autogestionado
Aprende a tu ritmo con nuestros recursos en línea.
Acceso 24/7 a contenidos pedagógicos y ejercicios interactivos.
Preparación al Examen
Preparación intensiva para certificaciones lingüísticas.
DELF, DELE, IELTS, TOEFL y otros exámenes oficiales.