* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
}

.banner {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    text-align: center;
    padding: 30px 20px;
    border-bottom: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner h1 {
    font-size: 3em;
    color: white;
    text-shadow: 3px 3px 0 #333, 6px 6px 0 rgba(0,0,0,0.2);
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

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

.tagline {
    font-size: 1.5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #feca57;
}

.hero-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    border: 5px solid #48dbfb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 2.5em;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3em;
    color: #48dbfb;
    font-weight: bold;
    margin-bottom: 15px;
}

.stars {
    font-size: 2em;
    margin: 15px 0;
}

.testimonial {
    font-style: italic;
    background: #fff3cd;
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid #feca57;
    margin-top: 15px;
}

.features {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #ff9ff3;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    color: #764ba2;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    border: 3px solid #e17055;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.emoji {
    font-size: 4em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #d63031;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.facts {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #00b894;
}

.facts h2 {
    text-align: center;
    font-size: 2.5em;
    color: #00b894;
    margin-bottom: 30px;
}

.fact-list {
    list-style: none;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.fact-list li {
    background: #55efc4;
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 5px solid #00b894;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.packages {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #ff6b6b;
}

.packages h2 {
    text-align: center;
    font-size: 2.5em;
    color: #ff6b6b;
    margin-bottom: 30px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.package-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid;
    position: relative;
}

.basic {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    border-color: #5f27cd;
}

.premium {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-color: #e17055;
    transform: scale(1.05);
}

.ultimate {
    background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
    border-color: #ff6b6b;
}

.popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.package-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price {
    font-size: 3em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 20px 0;
}

.package-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.package-card li {
    padding: 10px;
    margin: 10px 0;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
}

button:hover {
    background: #ee5a6f;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.testimonials {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #74b9ff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    color: #0984e3;
    margin-bottom: 30px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #dfe6e9;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #74b9ff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.author {
    font-weight: bold;
    color: #0984e3;
    text-align: right;
}

.cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid #fd79a8;
}

.cta h2 {
    font-size: 3em;
    color: white;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.cta-text {
    font-size: 1.8em;
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
}

.cta-subtext {
    font-size: 1.2em;
    color: white;
    margin-bottom: 30px;
}

.cta-button {
    font-size: 1.5em;
    padding: 20px 50px;
    background: #feca57;
    color: #333;
    margin: 20px 0;
}

.cta-button:hover {
    background: #ff9ff3;
}

.contact-info {
    font-size: 1.3em;
    color: white;
    margin: 10px 0;
    font-weight: bold;
}

.pura-vida {
    font-size: 2em;
    color: white;
    margin-top: 20px;
    font-weight: bold;
}

footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

.disclaimer {
    font-size: 0.9em;
    color: #dfe6e9;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 2em;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        max-width: 100%;
    }

    .feature-grid,
    .package-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .premium {
        transform: scale(1);
    }
}