/* Variáveis de cores baseadas no site med.estrategia.com */
:root {
    --primary-color: #0ba4ae; /* Azul turquesa */
    --secondary-color: #ff1569; /* Rosa/Magenta */
    --dark-blue: #252633; /* Azul marinho */
    --light-blue: #2b82d9; /* Azul claro */
    --white: #ffffff;
    --black: #000000;
    --gray: #999999;
    --light-gray: #f5f5f5;
    --success-color: #4caf50;
    --light-bg: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--light-bg);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #0ba4ae;
    transition: var(--transition);
}

a:hover {
    color: #ff1569;
}

h1, h2, h3 {
    margin-bottom: 20px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: inline-block;
}

.logo img {
    vertical-align: middle;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0ba4ae;
    position: relative;
    z-index: 1;
}
.header .container {
    text-align: center;
}

.hero .subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    position: relative;
    z-index: 1;
}

/* Coupon Section */
.coupon-section {
    padding: 40px 0;
}

.coupon-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coupon-card h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.coupon-display {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.coupon-code {
    background-color: rgba(11, 164, 174, 0.1);
    color: #0ba4ae;
    font-size: 2rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 8px;
    letter-spacing: 2px;
}

.copy-button {
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.copy-button:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
}

.copy-icon {
    font-size: 1.2rem;
}

.courses-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0ba4ae;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.courses-button:hover {
    background-color: #098e97;
    color: #ffffff;
    transform: translateY(-2px);
}

.arrow-icon {
    font-size: 1.2rem;
}

/* How to Use Section */
.how-to-use {
    background-color: #ffffff;
    padding: 80px 0;
}

.how-to-use h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #252633;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #252633;
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 40px;
    gap: 30px;
    align-items: flex-start;
    padding: 8px;
    border-radius: 10px; /* adiciona cantos arredondados */
}

.step-icon {
    position: relative;
    flex-shrink: 0;
}


.step-content h3 {
    color: #0ba4ae;
    font-size: 1.3rem;
    margin-bottom: 10px;
  
}

.conclusion-box {
    background-color: rgba(11, 164, 174, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    color: #444;
}

.access-button {
    display: block;
    background-color: #ff1569;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    transition: var(--transition);
}

.access-button:hover {
    background-color: #e01258;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #0ba4ae;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Final CTA Section */
.final-cta {
    background-color: #252633;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.final-coupon-code {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ff1569;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 8px;
    letter-spacing: 2px;
}

.final-cta-button {
    display: inline-block;
    background-color: #ff1569;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.final-cta-button:hover {
    background-color: #e01258;
    color: #ffffff;
    transform: translateY(-2px);
}

.mascot {
    position: absolute;
    bottom: -20px;
    right: 5%;
    width: 150px;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: #999999;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #999999;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .coupon-card {
        padding: 30px 20px;
    }
    
    .coupon-code {
        font-size: 1.5rem;
        padding: 12px 30px;
        color: #0ba4ae;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 8px;
        border-radius: 10px; /* adiciona cantos arredondados */
      
      
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .mascot {
        width: 120px;
        right: 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .coupon-display {
        flex-direction: column;
    }
    
    .coupon-code {
        width: 100%;
    }
    
    .copy-button {
        width: 100%;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .mascot {
        display: none;
    }
}
