* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --color-bg: #0f172a;
    --color-bg-light: #1e293b;
    --color-primary: #108b1a;
    --color-accent: #f4c542;
    --color-text: #e2e8f0;
    --color-text-dark: #94a3b8;
    --color-border: #140520;
    --color-contact-border: #4b0326;
    --color-contact: #0e0316;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    text-align: center;
}

.hero {
    padding: 100px 20px 60px;
    background: linear-gradient(180deg, var(--color-bg-light), var(--color-bg));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    font-weight: 300;
    margin-top: 15px;
}

.highlight {
    color: rgb(250, 252, 134);
}

.accent {
    color: var(--color-accent);
}

.main-content {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.contact-section-wrapper {
    position: relative;
    max-width: 800px;
    width: 100%;
    padding-left: 80px; 
}

.contact-title {
    font-size: 1.3rem;  
    font-weight: 1; 
    position: absolute;
    left: -55px;      
    top: 35px;        
    white-space: nowrap;
    color: var(--color-text-dark); 
}

.content-wrapper {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.info {
    flex: 1;
    text-align: left;
}

.info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.social-icons-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px; 
    transition: transform 0.2s ease;
    background-color: #333; 
}

.social-btn.whatsapp {
    background-color: transparent; 
    border-radius: 50%;           
}

.social-btn.whatsapp img {
    width: 100%;
    height: 100%;
    border-radius: 50%; 
    object-fit: cover;
}

.social-btn svg {
    fill: white;
    width: 28px;
    height: 28px;
}

.social-btn:hover {
    transform: scale(1.1);
}


/* --- Buttons --- */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 250px;
}

.btn {
    border: none;
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn.primary {
    background-color: var(--color-primary);
}

.btn.secondary {
    background-color: var(--color-border);
}

.btn.tertiary {
    background-color: var(--color-contact);
    border: 2px solid var(--color-contact-border);
}

/* --- Footer --- */
footer {
    padding: 30px 0;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

/* --- Responsive Media Query --- */
@media (max-width: 900px) {
    .contact-section-wrapper {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-title {
        position: static;
        margin-bottom: 25px;
    }

    .social-icons-column {
        position: static;
        transform: none;
        flex-direction: row;
        margin-bottom: 25px;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .info {
        text-align: center;
    }
    
    .buttons {
        width: 100%;
        max-width: 300px;
    }
}
