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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

.header {
    padding: 20px 50px;
    background: #f5f5f5;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header-space {
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 200px;
    position: relative;
}

.logo-eye {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
}

.logo-text {
    font-size: 32px;
    font-weight: 600;
    color: #5B9BD5;
}

.hero {
    min-height: calc(100vh - 90px);
    background: #f5f5f5;
    padding: 80px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('photos/provida_hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    color: #1e3a5f;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: "Montserrat-bold";
}

.hero p {
    font-size: 28px;
    color: #1e3a5f;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: "Montserrat";
}

.contact-btn {
    padding: 15px 50px;
    font-family: "Montserrat-bold";
    color: #1e3a5f;
    background: transparent;
    border: 2px solid #1e3a5f;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-btn:hover {
    background: #1e3a5f;
    color: white;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
}

.footer {
    background: white;
    padding: 50px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    height: 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.logo-item:hover {
    opacity: 1;
}

.footer-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.provida-powers-header {
    font-size: 20px;
    font-family: 'Montserrat-bold';
    color: #1e3a5f;
    margin-bottom: 40px;
}

.footer-link {
    color: #666;
    text-decoration: underline;
    font-size: 14px;
}

@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat-bold";
    src: url("fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 1300px) {
    .hero-content {
        margin-left: calc((100vw - 1300px) * 0.2);
    }
}

.animate-in {
    opacity: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 50vw;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1e3a5f;
}

.modal h2 {
    font-size: 32px;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e3a5f;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6b6b;
}

.form-group.valid input,
.form-group.valid textarea {
    border-color: #66BB6A;
}

.captcha-placeholder {
    width: 100%;
    min-height: 78px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    overflow: hidden;
}

.captcha-placeholder > div {
    transform-origin: left top;
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.captcha-feedback {
    display: none;
    border: 1px solid #f2b6b6;
    border-radius: 10px;
    background: #fff5f5;
    padding: 14px;
    margin-bottom: 16px;
}

.captcha-feedback.active {
    display: block;
}

.captcha-feedback h4 {
    color: #9f1239;
    margin-bottom: 8px;
    font-size: 16px;
}

.captcha-feedback p {
    color: #7f1d1d;
    font-size: 14px;
    margin-bottom: 10px;
}

.captcha-contact-details {
    background: #ffffff;
    border: 1px solid #f0d0d0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.captcha-contact-details p {
    margin-bottom: 6px;
    color: #7f1d1d;
}

.captcha-contact-details p:last-child {
    margin-bottom: 0;
}

.captcha-contact-details a {
    color: #1e3a5f;
    text-decoration: underline;
}

.captcha-feedback-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.captcha-retry-btn,
.captcha-close-btn {
    border: 1px solid #1e3a5f;
    background: transparent;
    color: #1e3a5f;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: "Montserrat-bold";
    cursor: pointer;
}

.captcha-retry-btn:hover,
.captcha-close-btn:hover {
    background: #1e3a5f;
    color: #ffffff;
}

.captcha-error-reason {
    font-size: 12px;
    color: #991b1b;
    margin-bottom: 0;
    word-break: break-word;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #66BB6A;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #5cb860;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 187, 106, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    text-align: center;
    padding: 30px;
}

.success-message.active {
    display: block;
}

.success-icon {
    font-size: 60px;
    color: #66BB6A;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #1e3a5f;
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    color: #666;
}
