.short-video {
    aspect-ratio: 9/16;
    width: 320px;
    height: 570px;
    max-width: 100vw;
    max-height: 70vh;
    background: #000;
    display: block;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .short-video {
        width: 100vw;
        height: 60vw;
        min-height: 320px;
        aspect-ratio: 9/16;
    }
}
/* ==========================
   Apresentação em Vídeo
========================== */
.video-presentation {
    background: linear-gradient(135deg, #fff0f6 0%, #ffe3ec 100%);
    padding: 60px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 8px 32px 0 rgba(255, 0, 80, 0.08);
    margin-bottom: 0;
}
.video-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.video-title-area {
    text-align: center;
}
.video-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d72660;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.video-desc {
    font-size: 1.1rem;
    color: #6c2a4e;
    margin-bottom: 0;
}
.video-frame-area {
    width: 100%;
    display: flex;
    justify-content: center;
}
.video-frame-wrapper {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(215, 38, 96, 0.10);
    padding: 16px;
    max-width: 560px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.presentation-video {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(215, 38, 96, 0.10);
    background: #000;
}
@media (max-width: 700px) {
    .video-frame-wrapper {
        max-width: 100%;
        padding: 6px;
    }
    .presentation-video {
        height: 200px;
    }
    .video-title {
        font-size: 1.3rem;
    }
}
/*
Morango do Amor - CSS para telas pequenas (mobile first)
Cores: verde (#1B5E20), vermelho (#C62828), preto (#111)
Fonte: Poppins
*/

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
    text-align: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
    padding: 0 0 24px 0;
    text-align: center;
}

.header {
    background: #1B5E20;
    color: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}
.logo-title {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}
.nav {
    margin-top: 12px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s;
}
.nav-link:hover {
    border-bottom: 2px solid #C62828;
}

.hero {
    background: #C62828;
    color: #fff;
    padding: 32px 0 16px 0;
    text-align: center;
}
.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    animation: fadeInDown 1s;
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-align: center;
    animation: fadeIn 1.2s;
}
.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.benefit {
    background: #fff;
    color: #C62828;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.cta-button {
    background: #1B5E20;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}
.cta-button:hover {
    background: #388E3C;
}
.hero-image {
    margin-top: 18px;
    margin-bottom: 0;
}
.product-image {
    width: 100%;
    max-width: 220px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s;
    margin-bottom: 0;
}
.product-image:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(198,40,40,0.18);
}

.product-description {
    background: #fff;
    color: #111;
    padding: 24px 0 8px 0;
}
.description-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.description-image {
    width: 100%;
    text-align: center;
}
.detail-image {
    width: 100%;
    max-width: 180px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(198,40,40,0.10);
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s;
}
.detail-image:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 32px rgba(27,94,32,0.18);
}
.description-text h3 {
    color: #C62828;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: center;
    animation: fadeInUp 1.1s;
}
.quality-badges {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.badge {
    background: #1B5E20;
    color: #fff;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-info {
    background: #f8f8f8;
    padding: 20px 0 8px 0;
}
.section-title {
    color: #C62828;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    animation: fadeInDown 1s;
}
.info-extra {
    text-align: center;
    margin-bottom: 10px;
}
.info-image {
    width: 60px;
    height: 60px;
}
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.info-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(27,94,32,0.07);
    padding: 14px 10px;
    text-align: center;
}
.info-icon {
    font-size: 1.5rem;
    color: #1B5E20;
    margin-bottom: 4px;
}
.info-value {
    color: #C62828;
    font-size: 1.1rem;
    font-weight: 600;
}
.info-detail {
    font-size: 0.95rem;
    color: #111;
}

.custom-order {
    background: #fff;
    padding: 20px 0 8px 0;
}
.order-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.order-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.order-option {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(198,40,40,0.06);
}
.order-option h3 {
    color: #1B5E20;
    font-size: 1.1rem;
    margin-bottom: 4px;
    text-align: center;
    animation: fadeInUp 1.1s;
}
.order-button {
    background: #C62828;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.order-button:hover {
    background: #1B5E20;
}
.order-form {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 16px 10px;
    box-shadow: 0 2px 8px rgba(27,94,32,0.07);
}
.form-group {
    margin-bottom: 12px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}
.quantity-btn {
    background: #C62828;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.quantity-btn:hover {
    background: #1B5E20;
}
.quantity-input {
    width: 48px;
    text-align: center;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 4px 0;
}
.date-input, .observations-input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 6px 8px;
    font-size: 1rem;
}
.observations-input {
    min-height: 48px;
    resize: vertical;
}
.full-width {
    width: 100%;
}
.hidden {
    display: none;
}

#dateField {
    display: none;
}

.floating-cart {
    position: fixed;
    bottom: 80px;
    right: 18px;
    background: #1B5E20;
    color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(27,94,32,0.18);
    z-index: 100;
    font-size: 1.5rem;
    cursor: pointer;
}
.cart-count {
    background: #C62828;
    color: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.9rem;
    margin-left: 4px;
    font-weight: 600;
}

.footer {
    background: #111;
    color: #fff;
    padding: 28px 0 0 0;
    margin-top: 32px;
}
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-brand {
    text-align: center;
}
.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}
.footer-logo-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 6px 0 2px 0;
    text-align: center;
    animation: fadeInDown 1s;
}
.footer-tagline {
    font-size: 0.95rem;
    color: #C62828;
    margin-bottom: 6px;
    text-align: center;
}
.footer-section h4 {
    color: #1B5E20;
    font-size: 1rem;
    margin-bottom: 4px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
}
.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.footer-link:hover {
    color: #C62828;
}
.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.social-link:hover {
    color: #1B5E20;
}
.footer-button {
    background: #C62828;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.footer-button:hover {
    background: #1B5E20;
}
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 18px;
    padding: 10px 0 16px 0;
    text-align: center;
    font-size: 0.95rem;
}
.footer-legal {
    margin-top: 6px;
    color: #fff;
    font-size: 0.93rem;
}
.legal-link {
    color: #fff;
    text-decoration: underline;
    margin: 0 4px;
}
.legal-link:hover {
    color: #C62828;
}
.divider {
    color: #fff;
    margin: 0 2px;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 18px;
    right: 18px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(27,94,32,0.18);
    z-index: 200;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.whatsapp-fixed:hover {
    background: #1B5E20;
}
.whatsapp-icon {
    font-size: 1.3em;
}

/* Responsividade para telas maiores */
@media (min-width: 600px) {
    .container {
        max-width: 600px;
    }
    .footer-grid, .description-content, .order-container, .info-grid {
        flex-direction: row;
        gap: 24px;
        text-align: left;
    }
    .footer-grid > div, .description-content > div, .order-container > div, .info-grid > div {
        flex: 1;
    }
    .order-options {
        flex-direction: row;
    }
}

/* Animações dinâmicas */
@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; }
}

