/*
Theme Name: S27 Jeans Coming Soon
Theme URI: https://manus.im
Author: Manus
Description: Um tema minimalista de "Em Breve" para a loja S27 Jeans.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: s27-jeans
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 600px;
}

.left-section {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.logo-container {
    margin-bottom: 40px;
}

.logo-container a.site-title {
    color: white;
    text-decoration: none;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-container img {
    max-width: 200px;
    height: auto;
}

.main-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tagline {
    font-size: 20px;
    font-weight: 800; /* Mesmo peso que Em breve */
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    background: #1da853;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.right-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.image-container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.countdown {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .left-section {
        padding: 50px 40px;
    }

    .logo-container a.site-title {
        font-size: 40px;
    }

    .main-heading {
        font-size: 40px;
    }

    .tagline {
        font-size: 18px;
    }

    .right-section {
        padding: 40px 20px;
        min-height: 400px;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .left-section {
        padding: 40px 25px;
    }

    .logo-container a.site-title {
        font-size: 32px;
    }

    .main-heading {
        font-size: 32px;
    }

    .tagline {
        font-size: 16px;
    }

    .contact-item {
        font-size: 14px;
    }

    .right-section {
        padding: 30px 15px;
        min-height: 300px;
    }

    .image-container img {
        max-width: 90%;
    }
}

/* Responsivo - Mobile Pequeno */
@media (max-width: 480px) {
    .container {
        border-radius: 15px;
    }

    .left-section {
        padding: 30px 20px;
    }

    .logo-container a.site-title {
        font-size: 28px;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-info {
        margin-bottom: 25px;
    }

    .contact-item {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .right-section {
        padding: 20px 15px;
        min-height: 250px;
    }
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-section {
    animation: fadeInUp 0.8s ease-out;
}

.right-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
