/* Importar fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Reset y estilos base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.hero-title,
.modulos-title,
.roles-title,
.team-text,
.training-title,
.pricing-title,
.package-title,
.card-title,
.profile-name {
    font-family: 'Montserrat', sans-serif;
}


.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}

/* Header / Navigation */
.header {
background-color: #1a1a1a;
padding: 20px 0;
position: relative;
z-index: 100;
position: fixed;
width: 100%;
}

.navbar {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}

.logo-icon {
position: relative;
width: 40px;
height: 40px;
}

.logo-layers {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
transform: skewY(-10deg);
border-radius: 4px;
}

.logo-layers::before,
.logo-layers::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #5ba3ff 0%, #4a90e2 100%);
border-radius: 4px;
}

.logo-layers::before {
transform: translate(-4px, -4px);
opacity: 0.7;
}

.logo-layers::after {
transform: translate(-8px, -8px);
opacity: 0.4;
}

.logo-text {
color: #ffffff;
letter-spacing: 1px;
}



.nav-menu {
display: flex;
list-style: none;
gap: 40px;
}

.nav-menu a {
color: #b0b0b0;
text-decoration: none;
font-size: 16px;
font-weight: 500;
transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
color: #ffffff;
}

.nav-buttons {
display: flex;
gap: 15px;
}

.mobile-menu-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
}

/* Buttons */
.btn {
padding: 12px 28px;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
font-size: 14px;
letter-spacing: 0.5px;
}

.btn-primary {
background-color: transparent;
color: #ffffff;
border: 2px solid #ffffff;
}

.btn-primary:hover {
background-color: #ffffff;
color: #1a1a1a;
}

.btn-secondary {
background-color: #ffffff;
color: #1a1a1a;
}

.btn-secondary:hover {
background-color: #f0f0f0;
}

.btn-cta {
background-color: #ffffff;
color: #1a1a1a;
padding: 16px 40px;
font-size: 15px;
}

.btn-cta:hover {
background-color: #f0f0f0;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
padding: 80px 0 0 0;
position: relative;
overflow: hidden;
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
min-height: 600px;
}

.hero-left {
z-index: 2;
}

.hero-badge {
display: inline-block;
background-color: #ffffff;
color: #1a1a1a;
padding: 10px 24px;
border-radius: 50px;
font-size: 14px;
font-weight: 500;
margin-bottom: 30px;
}

.hero-title {
font-size: 56px;
line-height: 1.2;
margin-bottom: 40px;
font-weight: 700;
}

.hero-cta {
display: flex;
align-items: center;
gap: 30px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.reviews {
display: flex;
align-items: center;
gap: 15px;
}

.reviews-avatars {
display: flex;
}

.reviews-avatars img {
width: 45px;
height: 45px;
border-radius: 50%;
border: 3px solid #1a1a1a;
margin-left: -12px;
object-fit: cover;
}

.reviews-avatars img:first-child {
margin-left: 0;
}

.reviews-info {
display: flex;
flex-direction: column;
gap: 4px;
}

.stars {
color: #ffd700;
font-size: 16px;
}

.reviews-count {
font-size: 12px;
color: #b0b0b0;
}

.video-button {
display: flex;
align-items: center;
gap: 15px;
}

.btn-video-play {
width: 120px;
height: 120px;
border-radius: 50%;
background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
position: relative;
animation: pulse 2s infinite;
}

.btn-video-play i {
font-size: 32px;
color: white;
margin-left: 4px;
}

.btn-video-play:hover {
transform: scale(1.05);
}

@keyframes pulse {
0%, 100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
}
50% {
    box-shadow: 0 0 0 20px rgba(33, 150, 243, 0);
}
}

.video-text {
font-size: 18px;
font-weight: 600;
writing-mode: vertical-rl;
transform: rotate(180deg);
letter-spacing: 2px;
}

/* Hero Right */
.hero-right {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
}

.pause-button {
position: absolute;
top: 20px;
right: 20px;
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.9);
border: none;
border-radius: 12px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
transition: all 0.3s;
}

.pause-button:hover {
background-color: #ffffff;
transform: scale(1.05);
}

.pause-button i {
color: #1a1a1a;
font-size: 18px;
}

.hero-image {
position: relative;
width: 500px;
height: 550px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.stats-card {
position: absolute;
bottom: 80px;
left: -40px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 20px 30px;
border-radius: 16px;
display: flex;
align-items: center;
gap: 15px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
animation: float 3s ease-in-out infinite;
}

@keyframes float {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-10px);
}
}

.stats-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.stats-icon i {
color: white;
font-size: 24px;
}

.stats-info {
display: flex;
flex-direction: column;
}

.stats-number {
font-size: 24px;
font-weight: 700;
color: #1a1a1a;
}

.stats-label {
font-size: 13px;
color: #666;
font-weight: 500;
}

/* Wave Bottom */
.wave-bottom {
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
z-index: 1;
}

.wave-bottom svg {
display: block;
width: 100%;
height: auto;
}

/* Módulos Section */
.modulos {
background-color: #1a3a6e;
padding: 80px 0;
position: relative;
}

.modulos-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 50px;
}

.modulos-title {
font-size: 48px;
font-weight: 700;
color: #ffffff;
text-align: center;
flex: 1;
}

.modulos-nav {
display: flex;
gap: 15px;
}

.nav-arrow {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #ffffff;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}

.nav-arrow:hover {
background-color: #f0f0f0;
transform: scale(1.1);
}

.nav-arrow i {
color: #1a3a6e;
font-size: 18px;
}

.nav-arrow:disabled {
opacity: 0.5;
cursor: not-allowed;
}

.modulos-slider {
overflow: hidden;
position: relative;
}

.modulos-track {
display: flex;
gap: 30px;
transition: transform 0.5s ease;
}

.modulo-card {
flex: 0 0 calc(25% - 23px);
background: #ffffff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.3s;
}

.modulo-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
}

.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.modulo-card:hover .card-image img {
transform: scale(1.1);
}

.card-badge {
position: absolute;
bottom: 15px;
left: 15px;
background-color: #1a3a6e;
color: #ffffff;
padding: 8px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
}

.badge-acudientes {
background-color: #1a3a6e;
}

.badge-docentes {
background-color: #16a085;
}

.badge-admin {
background-color: #1a3a6e;
}

.card-content {
padding: 25px;
}

.card-title {
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 15px;
line-height: 1.3;
}

.card-description {
font-size: 14px;
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}

.btn-enroll {
background-color: #1a3a6e;
color: #ffffff;
padding: 12px 30px;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
font-size: 14px;
}

.btn-enroll:hover {
background-color: #143054;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(26, 58, 110, 0.3);
}

.modulos-footer {
text-align: center;
margin-top: 50px;
}

/* Roles Section */
.roles {
background-color: #1a3a6e;
padding: 80px 0;
position: relative;
}

.roles-title {
font-size: 32px;
font-weight: 400;
color: #ffffff;
text-align: center;
max-width: 1000px;
margin: 0 auto 60px;
line-height: 1.5;
}

.roles-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}

.role-card {
background: #ffffff;
border-radius: 20px;
padding: 40px 30px;
display: flex;
flex-direction: column;
gap: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.3s, box-shadow 0.3s;
}

.role-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.role-badge {
background-color: #0d1f3f;
color: #ffffff;
padding: 12px 24px;
border: none;
border-radius: 25px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
align-self: flex-start;
}

.role-badge:hover {
background-color: #1a3a6e;
transform: scale(1.05);
}

.role-description {
font-size: 16px;
color: #333333;
line-height: 1.6;
margin: 0;
font-weight: 500;
}

/* Team Section */
.team {
background-color: #0d2a58;
padding: 80px 0;
position: relative;
}

.team-content {
display: grid;
grid-template-columns: 45% 55%;
gap: 60px;
align-items: center;
}

.team-left {
display: flex;
flex-direction: column;
gap: 25px;
}

.team-text {
font-size: 18px;
color: #ffffff;
line-height: 1.8;
margin: 0;
font-weight: 400;
}

.team-right {
display: flex;
justify-content: center;
align-items: center;
}

.team-cards {
display: flex;
gap: 30px;
align-items: flex-start;
position: relative;
}

/* ID Cards */
.id-card {
background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
border-radius: 20px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
overflow: hidden;
position: relative;
}

.main-card {
width: 280px;
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
}

.card-header {
width: 100%;
height: 40px;
position: relative;
margin-bottom: 30px;
}

.card-corner {
position: absolute;
top: 0;
width: 0;
height: 0;
border-style: solid;
}

.corner-left {
left: 0;
border-width: 40px 40px 0 0;
border-color: #1a3a6e transparent transparent transparent;
}

.corner-right {
right: 0;
border-width: 0 40px 40px 0;
border-color: transparent #1a3a6e transparent transparent;
}

.card-body {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}

.profile-photo {
width: 120px;
height: 120px;
border-radius: 50%;
overflow: hidden;
margin-bottom: 25px;
border: 4px solid #ffffff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.profile-name {
font-size: 24px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 10px 0;
text-align: center;
}

.profile-label {
font-size: 14px;
color: #666;
margin: 0;
text-align: center;
}

/* Secondary Card */
.secondary-card {
width: 320px;
padding: 25px;
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 40px;
}

.card-info {
display: flex;
flex-direction: column;
gap: 15px;
}

.info-item {
display: flex;
gap: 10px;
align-items: flex-start;
}

.bullet {
width: 8px;
height: 8px;
background-color: #1a3a6e;
border-radius: 50%;
flex-shrink: 0;
margin-top: 6px;
}

.info-text {
font-size: 11px;
color: #333333;
line-height: 1.6;
margin: 0;
}

.card-signature {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 10px;
}

.signature-label {
font-size: 9px;
color: #666;
text-transform: lowercase;
margin: 0;
}

.signature {
border-bottom: 2px solid #1a3a6e;
padding-bottom: 5px;
margin-bottom: 5px;
}

.signature-text {
font-family: 'Brush Script MT', cursive;
font-size: 32px;
color: #1a3a6e;
font-style: italic;
}

.signature-id {
font-size: 10px;
color: #4a90e2;
margin: 0;
}

.card-logo {
display: flex;
justify-content: flex-end;
margin-top: 10px;
}

.owl-logo {
width: 50px;
height: 50px;
background-color: #1a3a6e;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.owl-logo i {
font-size: 24px;
color: #ffffff;
}

/* Training Section */
.training {
background-color: #1a3a6e;
padding: 80px 0;
position: relative;
overflow: hidden;
}

.training-content {
display: grid;
grid-template-columns: 45% 55%;
gap: 60px;
align-items: center;
}

.training-left {
display: flex;
justify-content: flex-start;
align-items: center;
}

.training-illustration {
width: 100%;
max-width: 550px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.training-illustration img {
width: 100%;
height: auto;
display: block;
}

.training-right {
display: flex;
flex-direction: column;
gap: 35px;
padding-right: 20px;
}

.training-badge {
display: inline-block;
background-color: rgba(255, 255, 255, 0.9);
color: #1a3a6e;
padding: 12px 28px;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
align-self: flex-start;
}

.training-title {
font-size: 48px;
font-weight: 700;
color: #ffffff;
margin: 0;
line-height: 1.2;
}

.training-features {
display: flex;
flex-direction: column;
gap: 30px;
}

.feature-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.feature-icon {
width: 60px;
height: 60px;
min-width: 60px;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
font-size: 24px;
color: #1a3a6e;
}

.feature-text {
font-size: 17px;
color: rgba(255, 255, 255, 0.95);
line-height: 1.6;
margin: 0;
padding-top: 8px;
}

/* Pricing Section */
.pricing {
background-color: #1a3a6e;
padding: 80px 0;
position: relative;
}

.pricing-card {
background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
border-radius: 30px;
padding: 60px;
position: relative;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-content {
display: grid;
grid-template-columns: 55% 45%;
gap: 40px;
align-items: center;
position: relative;
z-index: 2;
}

.pricing-left {
display: flex;
flex-direction: column;
gap: 40px;
}

.pricing-title {
font-size: 56px;
font-weight: 700;
color: #ffffff;
margin: 0;
line-height: 1.2;
}

.pricing-features {
display: flex;
flex-direction: column;
gap: 25px;
}

.pricing-item {
display: flex;
gap: 15px;
align-items: flex-start;
}

.pricing-icon {
width: 32px;
height: 32px;
min-width: 32px;
background-color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 2px;
}

.pricing-icon i {
font-size: 14px;
color: #2196F3;
}

.pricing-text {
font-size: 20px;
color: #ffffff;
line-height: 1.5;
margin: 0;
}

.pricing-text strong {
font-weight: 700;
}

.btn-pricing {
background-color: #ffffff;
color: #1a3a6e;
padding: 16px 50px;
border: none;
border-radius: 30px;
font-size: 18px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s;
align-self: flex-start;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-pricing:hover {
background-color: #f0f0f0;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-right {
display: flex;
justify-content: flex-end;
align-items: flex-end;
position: relative;
height: 400px;
}

.pricing-right img {
height: 100%;
width: auto;
object-fit: cover;
object-position: center;
border-radius: 0 0 30px 0;
}

.pricing-decoration {
position: absolute;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 3;
backdrop-filter: blur(10px);
}

.pricing-decoration i {
font-size: 28px;
color: rgba(255, 255, 255, 0.9);
}

.pricing-pattern {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.1;
z-index: 1;
background-image: 
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.5) 49%, rgba(255, 255, 255, 0.5) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.5) 49%, rgba(255, 255, 255, 0.5) 51%, transparent 52%);
background-size: 100px 100px;
background-position: 0 0, 50px 50px;
}

/* Packages Section */
.packages {
background-color: #1a3a6e;
padding: 80px 0 100px;
position: relative;
}

.packages-title {
font-size: 32px;
font-weight: 400;
color: #ffffff;
text-align: center;
max-width: 900px;
margin: 0 auto 60px;
line-height: 1.5;
}

.packages-carousel {
position: relative;
display: flex;
align-items: center;
gap: 30px;
}

.carousel-btn {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.9);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
z-index: 10;
flex-shrink: 0;
}

.carousel-btn:hover {
background-color: #ffffff;
transform: scale(1.1);
}

.carousel-btn i {
color: #1a3a6e;
font-size: 18px;
}

.packages-wrapper {
flex: 1;
overflow: hidden;
position: relative;
}

.packages-track {
display: flex;
gap: 30px;
transition: transform 0.5s ease;
}

.package-card {
min-width: 100%;
background: #ffffff;
border-radius: 25px;
overflow: hidden;
display: grid;
grid-template-columns: 45% 55%;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.package-illustration {
background: linear-gradient(135deg, #e8f0fe 0%, #d4e4f7 100%);
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
}

.package-illustration img {
width: 100%;
height: auto;
max-width: 350px;
object-fit: contain;
}

.package-info {
padding: 50px 40px;
display: flex;
flex-direction: column;
gap: 25px;
justify-content: center;
}

.package-title {
font-size: 28px;
font-weight: 700;
color: #1a3a6e;
margin: 0;
line-height: 1.3;
}

.package-description {
font-size: 16px;
color: #666;
line-height: 1.6;
margin: 0;
}

.package-users {
display: flex;
align-items: center;
gap: 15px;
margin-top: 10px;
}

.users-avatars {
display: flex;
}

.users-avatars img {
width: 45px;
height: 45px;
border-radius: 50%;
border: 3px solid #ffffff;
margin-left: -12px;
object-fit: cover;
}

.users-avatars img:first-child {
margin-left: 0;
}

.users-count {
font-size: 16px;
font-weight: 600;
color: #1a3a6e;
}

.carousel-indicators {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 40px;
}

.indicator {
width: 40px;
height: 8px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.3);
border: none;
cursor: pointer;
transition: all 0.3s;
}

.indicator.active {
background-color: #2196F3;
width: 50px;
}

.indicator:hover {
background-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
background-color: #2d2d2d;
padding: 60px 0 40px;
position: relative;
color: #ffffff;
}

.footer-wave {
position: absolute;
top: -1px;
left: 0;
width: 100%;
z-index: 1;
transform: rotate(180deg);
}

.footer-wave svg {
display: block;
width: 100%;
height: auto;
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 2fr;
gap: 60px;
position: relative;
z-index: 2;
}

.footer-info {
display: flex;
flex-direction: column;
gap: 30px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 24px;
font-weight: bold;
}

.footer-contact {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: #cccccc;
}

.contact-item i {
font-size: 18px;
color: #4a90e2;
width: 20px;
}

.footer-column {
display: flex;
flex-direction: column;
gap: 20px;
}

.footer-title {
font-size: 18px;
font-weight: 700;
color: #ffffff;
margin: 0;
}

.footer-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-links a {
color: #cccccc;
text-decoration: none;
font-size: 15px;
transition: color 0.3s;
}

.footer-links a:hover {
color: #ffffff;
}

.footer-newsletter {
display: flex;
flex-direction: column;
gap: 20px;
}

.newsletter-title {
font-size: 16px;
font-weight: 600;
color: #ffffff;
margin: 0;
line-height: 1.4;
}

.newsletter-form {
display: flex;
gap: 10px;
background: #ffffff;
border-radius: 30px;
padding: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-input {
flex: 1;
border: none;
outline: none;
padding: 10px 20px;
font-size: 15px;
background: transparent;
color: #333333;
}

.newsletter-input::placeholder {
color: #999999;
}

.newsletter-btn {
background-color: #1a3a6e;
color: #ffffff;
border: none;
padding: 12px 35px;
border-radius: 25px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.newsletter-btn:hover {
background-color: #143054;
transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
.hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.hero-title {
    font-size: 42px;
}

.hero-right {
    height: 500px;
}

.hero-image {
    width: 400px;
    height: 450px;
}

.modulo-card {
    flex: 0 0 calc(50% - 15px);
}

.modulos-title {
    font-size: 40px;
}

.roles-grid {
    grid-template-columns: repeat(2, 1fr);
}

.roles-title {
    font-size: 28px;
}

.team-content {
    grid-template-columns: 1fr;
    gap: 50px;
}

.team-cards {
    flex-direction: column;
    align-items: center;
}

.secondary-card {
    margin-top: 0;
}

.training-content {
    grid-template-columns: 1fr;
    gap: 50px;
}

.training-title {
    font-size: 42px;
}

.pricing-card {
    padding: 40px;
}

.pricing-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.pricing-title {
    font-size: 42px;
}

.pricing-right {
    height: 350px;
    justify-content: center;
}

.packages-title {
    font-size: 28px;
}

.package-card {
    grid-template-columns: 1fr;
}

.package-illustration {
    padding: 30px;
}

.package-info {
    padding: 40px 30px;
}

.package-title {
    font-size: 24px;
}

.footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-info {
    grid-column: 1 / -1;
}
}

@media (max-width: 768px) {
.nav-menu {
    display: none;
}

.nav-buttons {
    display: none;
}

.mobile-menu-toggle {
    display: block;
}

.hero-title {
    font-size: 36px;
}

.hero-cta {
    flex-direction: column;
    align-items: flex-start;
}

.hero-image {
    width: 100%;
    max-width: 350px;
    height: 400px;
}

.stats-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.container {
    padding: 0 20px;
}

.video-button {
    margin-top: 20px;
}

.modulos-header {
    flex-direction: column;
    gap: 20px;
}

.modulos-title {
    font-size: 32px;
}

.modulo-card {
    flex: 0 0 100%;
}

.modulos-nav {
    order: -1;
}

.roles-grid {
    grid-template-columns: 1fr;
}

.roles-title {
    font-size: 24px;
}

.role-card {
    padding: 30px 25px;
}

.team-text {
    font-size: 16px;
}

.team-cards {
    width: 100%;
}

.main-card,
.secondary-card {
    width: 100%;
    max-width: 350px;
}

.training-title {
    font-size: 32px;
}

.feature-text {
    font-size: 16px;
}

.pricing-card {
    padding: 30px;
}

.pricing-title {
    font-size: 32px;
}

.pricing-text {
    font-size: 17px;
}

.pricing-right {
    height: 300px;
}

.packages-title {
    font-size: 24px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
}

.carousel-btn i {
    font-size: 16px;
}

.package-info {
    padding: 30px 25px;
}

.package-title {
    font-size: 22px;
}

.package-description {
    font-size: 15px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
}

.footer-info {
    grid-column: 1;
}

.newsletter-form {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.newsletter-btn {
    width: 100%;
}

.pricing-right img {
    width: 230px !important;
}
}

@media (max-width: 480px) {
.hero-title {
    font-size: 28px;
}

.btn-video-play {
    width: 90px;
    height: 90px;
}

.btn-video-play i {
    font-size: 24px;
}

.hero-image {
    height: 350px;
}

.team-text {
    font-size: 15px;
}

.main-card,
.secondary-card {
    max-width: 100%;
}

.profile-name {
    font-size: 20px;
}

.signature-text {
    font-size: 28px;
}

.training-title {
    font-size: 28px;
}

.training-badge {
    font-size: 14px;
    padding: 10px 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.feature-icon i {
    font-size: 20px;
}

.feature-text {
    font-size: 15px;
}

.pricing-card {
    padding: 25px;
}

.pricing-title {
    font-size: 28px;
}

.pricing-text {
    font-size: 16px;
}

.btn-pricing {
    padding: 14px 40px;
    font-size: 16px;
}

.pricing-right {
    height: 250px;
}

.pricing-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
}

.pricing-icon i {
    font-size: 12px;
}

.packages-title {
    font-size: 20px;
}

.packages-carousel {
    gap: 15px;
}

.carousel-btn {
    width: 35px;
    height: 35px;
}

.carousel-btn i {
    font-size: 14px;
}

.package-illustration {
    padding: 25px;
}

.package-info {
    padding: 25px 20px;
}

.package-title {
    font-size: 20px;
}

.package-description {
    font-size: 14px;
}

.users-avatars img {
    width: 38px;
    height: 38px;
}

.users-count {
    font-size: 14px;
}

.footer {
    padding: 40px 0 30px;
}

.footer-content {
    gap: 30px;
}

.footer-logo {
    font-size: 20px;
}

.contact-item {
    font-size: 14px;
}

.footer-title {
    font-size: 16px;
}

.footer-links a {
    font-size: 14px;
}

.newsletter-title {
    font-size: 15px;
}

.newsletter-input {
    font-size: 14px;
}

.newsletter-btn {
    font-size: 14px;
    padding: 10px 30px;
}
}