/* === ESTILO GERAL === */
.promo-mimos-container {
    background: linear-gradient(135deg, #ffeef8 0%, #ffe0f0 25%, #ffc4e1 50%, #ffb3d9 75%, #ff9ed5 100%);
    min-height: 100vh;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* === HEADER === */
.promo-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.promo-title {
    font-size: 3.5rem;
    color: #c2185b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-weight: 700;
}

.promo-subtitle {
    font-size: 1.4rem;
    color: #d81b60;
    font-weight: 400;
    line-height: 1.6;
}

/* === CARDS EXPLICATIVOS === */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    border: 2px solid rgba(255, 182, 193, 0.3);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.25);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    color: #c2185b;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-description {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* === SEÇÃO DE DESTAQUE === */
.highlight-section {
    background: linear-gradient(135deg, #ff6eb4 0%, #ff4da6 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 77, 166, 0.3);
    animation: fadeIn 1s ease-out;
}

.highlight-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* === SEÇÃO DO FORMULÁRIO === */
.form-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    border: 3px solid #ffb3d9;
}

.form-title {
    font-size: 2.5rem;
    color: #c2185b;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.shortcode-wrapper {
    margin-top: 30px;
}

/* === ESTILOS PARA FORMULÁRIOS COMUNS === */
.shortcode-wrapper input[type="text"],
.shortcode-wrapper input[type="email"],
.shortcode-wrapper input[type="tel"],
.shortcode-wrapper input[type="url"],
.shortcode-wrapper input[type="number"],
.shortcode-wrapper textarea,
.shortcode-wrapper select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ffb3d9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    font-family: inherit;
}

.shortcode-wrapper input[type="text"]:focus,
.shortcode-wrapper input[type="email"]:focus,
.shortcode-wrapper input[type="tel"]:focus,
.shortcode-wrapper input[type="url"]:focus,
.shortcode-wrapper input[type="number"]:focus,
.shortcode-wrapper textarea:focus,
.shortcode-wrapper select:focus {
    outline: none;
    border-color: #ff6eb4;
    box-shadow: 0 0 0 3px rgba(255, 110, 180, 0.1);
}

.shortcode-wrapper input[type="submit"],
.shortcode-wrapper button[type="submit"],
.shortcode-wrapper .wpcf7-submit {
    background: linear-gradient(135deg, #ff6eb4 0%, #ff4da6 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 77, 166, 0.3);
    display: inline-block;
    margin-top: 10px;
}

.shortcode-wrapper input[type="submit"]:hover,
.shortcode-wrapper button[type="submit"]:hover,
.shortcode-wrapper .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 166, 0.4);
}

.shortcode-wrapper label {
    display: block;
    color: #c2185b;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Contact Form 7 específico */
.shortcode-wrapper .wpcf7-form p {
    margin-bottom: 20px;
}

.shortcode-wrapper .wpcf7-not-valid-tip {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
}

.shortcode-wrapper .wpcf7-response-output {
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.shortcode-wrapper .wpcf7-mail-sent-ok {
    border-color: #4caf50;
    background: #e8f5e9;
    color: #2e7d32;
}

.shortcode-wrapper .wpcf7-validation-errors {
    border-color: #ff9800;
    background: #fff3e0;
    color: #e65100;
}

.shortcode-wrapper .wpcf7-mail-sent-ng {
    border-color: #f44336;
    background: #ffebee;
    color: #c62828;
}

/* === FOOTER === */
.promo-footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    color: #d81b60;
    font-size: 0.95rem;
    animation: fadeIn 1.2s ease-out;
}

/* === ANIMAÇÕES === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === RESPONSIVE - TABLET === */
@media (max-width: 768px) {
    .promo-mimos-container {
        padding: 40px 15px;
    }
    
    .promo-title {
        font-size: 2.5rem;
    }
    
    .promo-subtitle {
        font-size: 1.2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .highlight-section {
        padding: 35px 25px;
    }
    
    .highlight-title {
        font-size: 1.8rem;
    }
    
    .highlight-text {
        font-size: 1.05rem;
    }
    
    .form-section {
        padding: 35px 25px;
    }
    
    .form-title {
        font-size: 2rem;
    }
}

/* === RESPONSIVE - MOBILE === */
@media (max-width: 480px) {
    .promo-mimos-container {
        padding: 30px 10px;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-subtitle {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .highlight-section {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .highlight-title {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
    
    .form-section {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 1.7rem;
    }
    
    .form-intro {
        font-size: 1rem;
    }
    
    .shortcode-wrapper input[type="submit"],
    .shortcode-wrapper button[type="submit"],
    .shortcode-wrapper .wpcf7-submit {
        width: 100%;
        padding: 15px;
    }
}

/* === AJUSTES PARA TELAS GRANDES === */
@media (min-width: 1400px) {
    .promo-content {
        max-width: 1400px;
    }
    
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}