@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --primary: #ff6600;
    --secondary: #fff;
    --background: #fff;
    --glass: rgba(255,255,255,0.85);
    --glass-blur: 12px;
    --text: #222;
    --accent: #ff6600;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #fff 0%, #fff 60%, #ff6600 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

.audio-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255,102,0,0.3);
    z-index: 2000;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    animation: slideIn 0.5s ease-out;
    display: none;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.audio-notice:hover {
    background: #ffb347;
    transform: scale(1.05);
}

.header {
    width: 100vw;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 8px 32px 0 rgba(255, 102, 0, 0.08);
    border-radius: 0 0 32px 32px;
    margin-bottom: 2rem;
    padding: 2rem 1rem 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.0) 100%);
    transform: rotate(10deg);
    animation: shine 3.5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shine {
    0% { left: -60%; }
    100% { left: 100%; }
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 2px 12px #ffffff88);
    background: transparent;
}

.video-container {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(255,102,0,0.12);
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.audio-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,102,0,0.9);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    z-index: 100;
    transition: all 0.3s ease;
}

.audio-btn:hover {
    background: rgba(255,102,0,1);
    transform: scale(1.1);
}

main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.aida {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    background: var(--glass);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255,102,0,0.08);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.aida:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255,102,0,0.15);
}

.aida h2 {
    color: var(--accent);
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.aida p {
    font-size: 1.1rem;
    color: #444;
    text-align: center;
}

.img-row {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    width: 100%;
}

.img-row img {
    width: 100%;
    max-width: 700px;
    height: auto;
    min-height: 200px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(255,102,0,0.10);
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
    flex: 1 1 300px;
}

.img-row img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(255,102,0,0.18);
    z-index: 2;
}

.img-row img {
    cursor: pointer;
}

/* Modal para zoom das imagens */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255,102,0,0.3);
    animation: zoomIn 0.3s ease-out forwards;
}

@keyframes zoomIn {
    from { 
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255,102,0,0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-modal:hover {
    background: rgba(255,102,0,1);
    transform: scale(1.1);
}

.cta-btn {
    display: inline-block;
    margin: 1.2rem auto 0 auto;
    background: linear-gradient(90deg, var(--primary), #ffb347);
    color: #fff;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(255,102,0,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,102,0,0.25); }
    70% { box-shadow: 0 0 0 12px rgba(255,102,0,0.0); }
    100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.0); }
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 60%, rgba(255,255,255,0.4) 80%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-20deg);
    animation: ctabrillo 2.5s linear infinite;
    pointer-events: none;
}

@keyframes ctabrillo {
    0% { left: -75%; }
    100% { left: 120%; }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(255,102,0,0.15);
    padding: 0.7rem;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 48px;
    height: 48px;
}

.whatsapp-float:hover {
    background: #ffb347;
    transform: scale(1.1);
    animation: bounce 0.7s;
}

@keyframes bounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.15); }
    50%  { transform: scale(0.95); }
    70%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

footer {
    text-align: center;
    color: #888;
    padding: 2rem 1rem 1rem 1rem;
    font-size: 1rem;
    background: transparent;
}

.header, main, .aida, .img-row, .cta-btn, .aida h2, .aida p, .aida .img-row, .aida .cta-btn {
    text-align: center;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .header {
        min-height: 40vh;
        padding: 1.5rem 0.5rem 2rem 0.5rem;
    }
    .logo-container {
        margin-bottom: 2rem;
    }
    main {
        padding: 1rem 0.5rem;
    }
    .aida {
        padding: 1.2rem;
    }
    
    .img-row {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .img-row img {
        max-width: 700px;
        width: 85vw;
        min-height: 200px;
        flex: none;
    }
    
    .modal-content {
        max-width: 96vw;
        max-height: 90vh;
    }
    
    .modal-content img {
        min-height: 50vh;
    }
}

@media (max-width: 600px) {
    .header {
        min-height: 30vh;
        padding: 1rem 0.2rem 1.5rem 0.2rem;
    }
    .logo {
        max-width: 120px;
    }
    .logo-container {
        margin-bottom: 1.5rem;
    }
    .img-row {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .img-row img {
        max-width: 700px;
        width: 90vw;
        min-height: 180px;
        flex: none;
        display: block;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .whatsapp-float img {
        width: 38px;
        height: 38px;
    }
    .aida {
        padding: 1.5rem 1rem;
        width: 95vw;
    }
    .audio-notice {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        max-width: 98vw;
        max-height: 95vh;
    }
    
    .modal-content img {
        width: 100%;
        height: auto;
        min-height: 60vh;
        object-fit: contain;
    }
}