/* ============================================
   SOBRE PAGE STYLES
   ============================================ */

/* Story Section */
.about-story {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--ciano);
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.story-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.story-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story .container {
    position: relative;
    z-index: 3;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(1, 28, 38, 0.9);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-content h2 {
    color: var(--white);
    font-size: 2.89rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--cinza-claro);
    font-size: 1.45rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission, Vision, Values */
.mvv {
    background: var(--cinza-claro);
    padding: 5rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--ciano);
    position: relative;
}

.mvv-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(4, 196, 217, 0.2);
}

.mvv-item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ciano), var(--cyan-claro));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mvv-item h3 {
    color: var(--petroleo-escuro);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mvv-item h3::before {
    font-size: 1.8rem;
    color: var(--ciano);
}

.mvv-item:nth-child(1) h3::before {
    content: '🎯';
}

.mvv-item:nth-child(2) h3::before {
    content: '🚀';
}

.mvv-item:nth-child(3) h3::before {
    content: '💎';
}

.mvv-item p {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1.19rem;
}

.mvv-item ul {
    text-align: left;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1.19rem;
}

.mvv-item ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.mvv-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ciano);
    font-weight: bold;
}

/* Team Section */
.team {
    background: var(--white);
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--cinza-claro);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--ciano);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.6rem;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-member h4 {
    color: var(--petroleo-escuro);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--ciano);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--grafite);
    line-height: 1.6;
    font-size: 1.19rem;
}

/* Stats Section para página Sobre */
.stats {
    background: var(--petroleo-escuro);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-item {
    text-align: center;
    padding: 2rem 1rem;
}

.about-stat-number {
    color: var(--ciano);
    font-size: 3.83rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: var(--white);
    font-size: 1.36rem;
    font-weight: 500;
}

/* Client Reviews */
.client-reviews {
    background: var(--petroleo-escuro);
    padding: 4rem 0;
}

.client-reviews .section-title {
    color: var(--white);
    text-align: center;
    font-size: 3.23rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--ciano);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(4, 196, 217, 0.3);
}

.review-stars {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.review-author strong {
    color: var(--petroleo-escuro);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.3rem;
}

.review-author span {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   CONTACTO PAGE STYLES
   ============================================ */

/* Contact Section */
.contact-section {
    background: var(--cinza-claro);
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--petroleo-escuro);
    font-size: 2.38rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--petroleo-escuro);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.19rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: var(--radius-md);
    font-size: 1.28rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ciano);
    box-shadow: 0 0 0 3px rgba(4, 196, 217, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.btn-primary {
    background: var(--ciano);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.36rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(4, 196, 217, 0.3);
}

.btn-primary:hover {
    background: var(--petroleo-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(4, 196, 217, 0.4);
}

/* Contact Info */
.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h2 {
    color: var(--petroleo-escuro);
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.7rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 1.2rem;
}

.contact-item .contact-icon {
    font-size: 1.6rem;
    width: 35px;
    text-align: center;
    flex-shrink: 0;
    color: var(--petroleo-escuro) !important;
    filter: none;
}

.contact-item h4 {
    color: var(--petroleo-escuro);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-item p {
    color: var(--grafite);
    line-height: 1.4;
    margin: 0;
    font-size: 1.05rem;
}

.contact-info .social-links h4 {
    color: var(--petroleo-escuro);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.social-icons a {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--ciano);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--petroleo-escuro);
}

/* Banner Card */
.banner-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.banner-card-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-card-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: 5rem 0;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: none;
}

.faq-item {
    background: var(--petroleo-medio);
    margin-bottom: 0;
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    height: fit-content;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--cinza-claro);
    line-height: 1.6;
    margin: 0;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s ease-in-out infinite alternate;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
    box-shadow: 0 12px 35px rgba(18, 140, 126, 0.6);
    animation: none;
    color: var(--white);
}

.floating-whatsapp-btn .btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.floating-whatsapp-btn svg {
    width: 22px;
    height: 22px;
}

.floating-whatsapp-btn .btn-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Responsive Styles para About e Contact */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .faq-items {
        gap: 1.5rem;
    }
    
    .floating-whatsapp-btn {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .about-story,
    .mvv,
    .team,
    .stats,
    .contact-section,
    .faq {
        padding: 3rem 0;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
    
    .about-story {
        min-height: 45vh;
        padding: 3rem 0;
    }
    
    .story-content {
        padding: 3rem 2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .mvv-item {
        padding: 2rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }

    /* Reviews Responsive */
    .client-reviews {
        padding: 3rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .faq-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .floating-whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .floating-whatsapp-btn .btn-text {
        font-size: 0.65rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .page-header {
        margin-top: 190px;
        padding: 50px 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .floating-whatsapp-btn {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .floating-whatsapp-btn .btn-text {
        font-size: 0.6rem;
    }
}