/* Estilos principais para a página de Moda Inclusiva */

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F7F7F7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5em !important;
}

h2 {
    font-size: 2.5rem;
    color: #1C1C1C;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f59e0b;
    margin: 15px auto;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: #1C1C1C;
    margin-top: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f59e0b !important;
    border-radius: 2px;
}

/* Seção de introdução */
.intro {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.intro-content {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-text {
    margin-bottom: 3rem;
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.intro-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.6;
}

.shape {
    position: absolute;
    border-radius: 10%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(138, 43, 226, 0.1);
    top: -50px;
    right: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 51, 102, 0.1);
    bottom: 20%;
    left: 5%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 204, 204, 0.1);
    bottom: 10%;
    right: 20%;
}

/* Seção de vídeos */
.videos {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info p {
    color: #555555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background-color: rgba(52, 43, 226, 0.1);
    color: #1C1C1C;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    display: inline-block;
}

/* Seção de destaque */
.highlight {
    padding: 6rem 0;
    background: linear-gradient(45deg, #421270, #f59e0b);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.highlight-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.highlight h2 {
    color: #FFFFFF;
}

.highlight h2::after {
    background: #FFFFFF;
}

.highlight-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.highlight-cta {
    display: inline-block;
    background-color: #FFFFFF;
    color: #1C1C1C;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Seção de contato */
.contact {
    padding: 6rem 0;
    background-color: #F7F7F7;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #1C1C1C;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #1C1C1C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f59e0b;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #DDD;
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1C1C1C;
}

.form-submit {
    background-color: #1C1C1C;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-submit:hover {
    background-color: #7209b7;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #1C1C1C;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}


.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.accessibility-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .intro-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .highlight-cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Acessibilidade */
:focus {
    outline: 3px solid #00CCCC;
    outline-offset: 3px;
}

/* Estilos para texto destacado */
.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 51, 102, 0.2);
    z-index: -1;
    transition: height 0.3s ease;
}

.text-highlight:hover::after {
    height: 50%;
}
