/* ========================================
   PÁGINA DO PLANNER TEATia 2026
   Design Premium e Profissional
   ======================================== */

.planner-page {
    background: #fafafa;
}

/* === HERO PLANNER === */
.planner-hero {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.planner-hero::before {
    content: '📅';
    position: absolute;
    font-size: 300px;
    opacity: 0.04;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 4s ease-in-out infinite;
}

.planner-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(198, 163, 213, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.planner-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.planner-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #2d3748;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.planner-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2d3748;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 700;
}

/* === BENEFÍCIOS === */
.planner-benefits {
    padding: 80px 20px;
    background: linear-gradient(180deg, white 0%, #fafafa 100%);
    position: relative;
}

.planner-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(198, 163, 213, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 205, 214, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.planner-benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-list {
    max-width: 1000px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border-left: 5px solid #c6a3d5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 163, 213, 0.2);
    border-left-width: 8px;
}

.benefit-item .benefit-icon {
    font-size: 45px;
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(198, 163, 213, 0.3);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.planner-quote {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(198, 163, 213, 0.3);
}

.planner-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.planner-quote p {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* === PREVIEW === */
.planner-preview {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.preview-gallery {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.preview-placeholder {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    border: 3px dashed #c6a3d5;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.preview-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 163, 213, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preview-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(198, 163, 213, 0.2);
    border-color: #b292c4;
}

.placeholder-content {
    position: relative;
    z-index: 1;
}

.calendar-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 3s ease-in-out infinite;
}

.placeholder-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: #2d3748;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.placeholder-content > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 30px 0;
}

.placeholder-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.placeholder-features span {
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.placeholder-features span:hover {
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(198, 163, 213, 0.3);
}

/* === FORMULÁRIO === */
.planner-download {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f4ff 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.planner-download::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 163, 213, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.download-box {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.download-box::before {
    content: '📥';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b2cdd6 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(198, 163, 213, 0.4);
}

.download-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: #2d3748;
    text-align: center;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.download-box > p {
    text-align: center;
    color: #666;
    margin: 0 0 50px 0;
    font-size: 1.15rem;
    line-height: 1.6;
}

.planner-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c6a3d5;
    box-shadow: 0 0 0 3px rgba(198, 163, 213, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group span {
    color: #4a5568;
    font-size: 0.95rem;
}

.btn-submit {
    padding: 18px 40px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b292c4 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(198, 163, 213, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 163, 213, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 1.3rem;
}

.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.8;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    padding: 20px;
    border-radius: 10px;
}

/* === SOBRE === */
.planner-about {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: #2d3748;
    margin: 0 0 30px 0;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin: 0 0 20px 0;
}

.btn-explore {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #c6a3d5 0%, #b292c4 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(198, 163, 213, 0.3);
    margin-top: 20px;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 163, 213, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .planner-hero {
        padding: 60px 20px 50px;
    }
    
    .planner-title {
        font-size: 2rem;
    }
    
    .planner-subtitle {
        font-size: 1.05rem;
    }
    
    .planner-benefits,
    .planner-preview,
    .planner-download,
    .planner-about {
        padding: 60px 20px;
    }
    
    .preview-placeholder {
        padding: 40px 25px;
    }
    
    .calendar-icon {
        font-size: 60px;
    }
    
    .placeholder-content h3 {
        font-size: 1.5rem;
    }
    
    .placeholder-features {
        flex-direction: column;
    }
    
    .download-box {
        padding: 40px 30px;
    }
    
    .download-box::before {
        font-size: 60px;
        width: 80px;
        height: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 25px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-group {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .form-group input,
    .form-group select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .benefit-item .benefit-icon {
        margin: 0 auto 20px;
    }
    
    .planner-quote {
        padding: 30px 25px;
    }
    
    .planner-quote p {
        font-size: 1.2rem;
    }
}
