/* Estilo Global */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    background-color: black;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

header nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1em;
}

header nav a:hover {
    text-decoration: underline;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    color: white;
    background: url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
    margin: 10px 0 30px;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #333;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.pricing-plan {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 20px;
    margin: 20px;
    display: inline-block;
    width: calc(50% - 40px);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-plan:hover {
    transform: scale(1.05);
}

.pricing-plan img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #e74c3c;
    margin-bottom: 15px;
}

.pricing-plan h3 {
    font-size: 2em;
    margin: 0;
    color: #3498db;
}

.pricing-plan p {
    font-size: 1.5em;
    margin: 10px 0;
    color: #e74c3c;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-plan li {
    margin: 10px 0;
}

.pricing-plan .cta-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Videos Section */
.videos {
    padding: 60px 20px;
    background: #333;
    color: white;
    text-align: center;
}

.videos h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.video-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video-player {
    width: 100%;
    max-width: 600px;
    height: 340px;
    background: #000;
    margin: 10px;
    border-radius: 10px;
}
/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background: #f9f9f9;
    color: #333;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.pricing-plan {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 20px;
    margin: 20px;
    display: inline-block;
    width: calc(50% - 40px);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-plan:hover {
    transform: scale(1.05);
}

.pricing-plan img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #e74c3c;
    margin-bottom: 15px;
}

.pricing-plan h3 {
    font-size: 2em;
    margin: 0;
    color: #3498db;
}

.pricing-plan p {
    font-size: 1.5em;
    margin: 10px 0;
    color: #e74c3c;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-plan li {
    margin: 10px 0;
}

.pricing-plan .cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
}

.pricing-plan .cta-button:hover {
    background-color: #c0392b;
}


/* Footer */
footer {
    background: #3498db;
    color: white;
    padding: 20px 0;
    text-align: center;
}
